Zsh is a shell designed for interactive use, although it is also a powerful scripting language.
0
votes
1answer
61 views
Variable names in prompt instead of path
How can I prevent my zsh prompt from showing the variable name a path is assigned to instead of the path itself?
foo="/some/path"
cd "$foo"
shows $ ~foo/ in my prompt instead $ /some/path/
0
votes
1answer
37 views
zsh: parameter expansion inserting quotes
I'm having trouble during parameter expansion in zsh: It's enclosing my variable in quotes.
Here is my script. (Apologies for the noise, the only real important line is the last one with the find ...
0
votes
2answers
42 views
bash: can read be used as a command or expression?
I want to make a oneliner loop that reads and checks what it read.
This surely won't work:
while [[ read line != "q" ]]; do; echo "enter q to quit: "; done
Zsh here tells me condition expected: ...
2
votes
1answer
57 views
Zsh tab completion: Is there any plugin or feature that can allow for a MRU tab-completion scheme?
I find myself doing stuff like typing the last part of a command name because the beginning of it gets completed with other commands. Of course most other shells can't even complete stuff in this way ...
0
votes
1answer
36 views
How can I remove a path from $PATH in Zsh and add it to the beginning without duplication?
I have:
PATH=/bar:/foo
I want:
PATH=/foo:/bar
I don't want:
PATH=/foo:/bar:foo
So I'm thinking, given the default path is PATH=/bar, I can modify $path (which is $PATH as an associative ...
8
votes
1answer
77 views
What is the meaning of !#:3?
curl http://beyondgrep.com/ack-2.02-single-file > ~/bin/ack && chmod 0755 !#:3
What is the meaning of !#:3, from ack installation guide?
1
vote
1answer
108 views
tmux session name in terminal window
I often run two tmux sessions in separate Terminal.app tabs. I used named sessions through tmuxinator. I would like a way to show that session name as the title of the tab, so I can identify which ...
0
votes
1answer
114 views
Command Prompt Directory Styling
I have a particular need for adjusting the command prompt. At the moment i am using Holmans Dotfiles and I want to further customize it in order to create a prompt that's more readable and clear. What ...
2
votes
2answers
51 views
zsh: bash script comparison of dynamically generated string
This works as expected:-
x="None of the specified ports are installed"
if [ "$x" = "None of the specified ports are installed" ];
then echo 1;
else echo 0;
fi
I get 1, which is what I am ...
0
votes
2answers
112 views
How to show battery status in Zsh prompt
I think the answer is quite self explanatory.
I've been looking around for a software that already does this but I haven't had any luck. It's either not done in Zsh, or it's for another app, for ...
1
vote
4answers
644 views
What this line means in oh-my-zsh?
In the oh-my-zsh's upgrade tool, I found this line(line 2):
current_path=${current_path/ /\\ }
What it did?
Additionally, this line works on mac, but on my ubuntu server it output a error says:
...
0
votes
0answers
42 views
grml's zsh config - multiline command re-echoing
I installed grml's configuration files and something in those files seems to be causing
multiline commands to re-echo themselves before executing. For example
user@machine ~ % cat << EOF
...
2
votes
1answer
29 views
How to exec but keeping the same argv0
From zshbuiltins manual,
exec [ -cl ] [ -a argv0 ] simple command
Replace the current shell with an external command rather than forking. With -c clear the environment; with -l ...
1
vote
1answer
86 views
How to make Emacs 's shell mode source my profile file?
I have defined some aliases and function snippets int some of my profile files, say, ~/.zprofile. But Emacs never reads them. There is already a topic about it. However, it's not enough:
It cannot ...
0
votes
1answer
57 views
Correctly passing a path from zsh (cygwin) to vim on windows
I have the following alias/function in my .zshrc to open gvim with file names as arguments.
vim() {
if [[ $# -ge 1 ]]; then
gvim "$*";
else
gvim;
fi
}
It opens files ...
0
votes
1answer
33 views
How to substitute only the highest number in zsh?
I have a folder with materials for university study, sorted by semesters:
$ ls University
semester1 semester2 semester3 semester4
I'm trying to make one of them the named directory, and I want zsh ...
0
votes
0answers
60 views
Tmuxinator, RVM command not found
I'm using tmuxinator and rvm, but have encountered a strange issue:
~|⇒ rvm -v
rvm 1.19.0 (stable) by Wayne E. Seguin <wayneeseguin@gmail.com>, Michal Papis <mpapis@gmail.com> ...
0
votes
1answer
85 views
Sending output to tty is not producing expected results [duplicate]
I'm clearly not expecting the right results.
$ man less
In another terminal:
$ ps u
# Find that pid of less is 45783
$ lsof -p 45783
COMMAND PID USER FD TYPE DEVICE SIZE/OFF ...
1
vote
2answers
49 views
Shell variable definition and substitution properly quoted in a one-liner?
I want to replace a number of strings within a query with something like the following:
URL="sub.domain.tld" mysql -A --user=username --password="password" --host=hostname usernameuction -e "update ...
0
votes
2answers
64 views
How to make byobu forward-word and backward-word with CTRL+arrow?
When used in uxterm zsh is jumping words when I press ctrl+left and ctrl+right.
When used in plain unconfigured byobu (tmux backend) it is not. The cursor sits there doing nothing.
I can however ...
7
votes
2answers
100 views
Why must I enter “\\\0” to create a string “\0” in zsh?
> echo 0
0
> echo \0
0
slu@dev:~
> echo \\0
slu@dev:~
> echo "\\0"
# <--- What!!?
slu@dev:~
> echo \\\0
slu@dev:~
> echo "\\\0"
\0
slu@dev:~
> bash
...
0
votes
1answer
76 views
use zsh's built in pager instead of less
Suppose I've got a giant command
echo "start string `complexcommand -with -many args | cut -d ' ' -moreargs | sed 's/you/get/g' | grep -v "the idea" | xargs echo` ending string" | program | less -S
...
0
votes
1answer
151 views
ZSH/NPM “hubot: command not found” and yet “$less” works [closed]
Both (lessc and hubot) are installed globally.
which hubot
hubot not found
npm not installing it even with sudo
ls /usr/local/share/npm/bin
grunt jshint lessc recess uglifyjs
npm:
npm ...
1
vote
1answer
62 views
show git diff and git status simultaneously
I'd like a way to get a pager-view (less) of a buffer of git diff and git status to get a nice complete summary of the state of my working changes. It helps because git diff alone will hide the staged ...
3
votes
1answer
76 views
General solution for bypassing file headers in shell commands
I make extensive use of piping multiple linux shell commands, for example:
grep BLAH file1 | sed 's/old/new/' | sort -k 1,1 > file3
My files often have a header line, and often I have to ...
1
vote
1answer
40 views
How to config gerrit refs in Zsh?
In my team, we use gerrit for code review.
As you know, gerrit uses the magical 'refs/for/*'.
Since I do not want to type
git push origin HEAD:refs/for/*
every time I push to remote,
I tried ...
0
votes
0answers
32 views
How can I use the correct rbenv Ruby version with Emacs' shell-command?
Here is my current setup:
MacBook with Mountain Lion
Emacs is http://emacsformacosx.com/
rbenv with global 1.9.3-p374
Login shell is zsh
My ~/.zprofile (I am certain that the file gets executed):
...
0
votes
2answers
28 views
How to pass a slice of arguments to a command in zsh?
I have this function:
find () {
case "$1" in
package)
pacman -Ss
;;
file)
echo "Find file"
;;
*)
echo "You cannot find something like this."
;;
esac
}
...
1
vote
1answer
347 views
“command not found” after installation
I seem to be getting the following when I execute npm install bower -g
/usr/local/share/npm/bin/bower -> /usr/local/share/npm/lib/node_modules/bower/bin/bower
bower@0.8.6 ...
0
votes
2answers
63 views
Shell script with args, where the args are files with spaces
I wish to use a shell script that accepts a for loop of a directory for an imagemagick script. The shell script is this:
#!/bin/sh
# ~/scripts/mkhdr.sh
convert -gaussian $1 $2 - | composite -compose ...
1
vote
1answer
160 views
Search current line in ZSH (vi mode)
How do I search/navigate within the current line in zsh? For example, if the cursor is at the end of the line..
// [] indicates cursor position
user@hostname: vim /etx/apache2/sites-enabled/defaul[t]
...
1
vote
1answer
57 views
Terminating a shell function non-interactively
Is there a way to terminate a shell function non-interactively without killing the shell that's running it?
I know that the shell can be told how to respond to a signal (e.g. USR1), but I can't ...
1
vote
1answer
438 views
zshrc “command not found: npm”
So I'm looking into learning node.js. I've been following this tutorial to install it and try some stuff out.
At any rate, npm is behaving really strangely. It'll work just fine for a while (I ...
4
votes
1answer
70 views
How to define a “die” shell function?
Note: this is not a duplicate of In bash, is there an equivalent of die "error msg" , as illustrated at the end of this post.
Consider the shell function
foo () {
echo "testing..." ...
1
vote
1answer
99 views
Setting zsh PATH not producing desired order
I'm using Homebrew on Mac OS X 10.8.3. Homebrew wants the /usr/local/bin directory earlier in the PATH than /usr/bin, otherwise system-provided programs will be used instead of Homebrew managed ...
1
vote
0answers
29 views
Navigating list choices with vi bindings in zsh
I have recently migrated to zsh from bash and I'm loving it so far :)
I'm mostly use vi bindings to edit the commands and search the history.
Is there a way to navigate the auto-completion options ...
1
vote
2answers
63 views
How to autostart jobs when using zsh [closed]
I switched to zsh for my daily usage recently. One problem that I come across is that how I can autostart some background command line executable(for example, fetchmail -d 1800). When I add the line ...
0
votes
0answers
134 views
Uninstall zsh on mac os x [closed]
I'm trying to remove zsh on max os x, I don't use it.
How can do it? I couldn't found the correct steps to do it.
I removed /bin/zsh but it doesn't work. I only want use bash.
thanks in advanced.
0
votes
1answer
25 views
zsh - grab command history entry from a shell script
This is a zsh specific script, I'll worry about bash later (i.e. never).
Here's what I got so far.
#!/home/slu/.zsh/bin/zsh
# This is a shellscript generator that converts a history entry to a ...
0
votes
1answer
84 views
Converting a history command into a shell script
This is sort of one of those things that I figured a lot of people would use a lot, but I can't seem to find any people who have written about this sort of thing.
I find that a lot of times I do a ...
0
votes
1answer
114 views
oh-my-zsh config file not loading
I am trying to get ZSH config working correctly on Mac OSX. I installed it using curl: curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh. Then I modified my zshrc file ...
0
votes
0answers
35 views
ZSHconfig alias - trying to copy contents of file into clipboard
I want to use a ZSH alias to copy the contents of a text file onto my clipboard so I can paste it into a browser.
Here's what my alias is in .zshrc
alias directions_home="cat ...
0
votes
0answers
18 views
Adding “exceptions” to a symlink maker/generator
This is my current script that generates the symlinks (which I use with new OS installations):
https://github.com/Greduan/dotfiles/blob/master/scripts/symlinks.sh
There is only one problem with this ...
1
vote
1answer
30 views
Documentation on the `find` command in Zsh
I have seen the find command in many places many times, a couple of examples is:
for source in `find $dotfiles_root -maxdepth 2 -name \*.symlink`
Or:
if ! [ -f git/gitconfig.symlink ]
Or:
if [ ...
0
votes
1answer
24 views
Figure out the destination of `ln -s` using script
First, here's the script I'm talking about:
https://github.com/Greduan/dotfiles/blob/master/scripts/symlinks.sh
Check line 20. It has the following content
dest = "$HOME/.`basename ...
2
votes
0answers
218 views
sudo mkdir /etc/abc gives command not found, but either sudo and mkdir used alone works [closed]
I can do
sudo touch /etc/abc
and
sudo rm /etc/abc
and it works, so does
mkdir ~/abc
but when I do
sudo mkdir /etc/abcd
I get
sudo: nocorrect: command not found
Any ideas?
I'm using zsh
...
0
votes
0answers
44 views
Completion for Hadoop command in zsh
I love the tab completion feature in zsh. But when I use hadoop command, it seems do not work anymore. So is there any idea to auto-completion for hadoop command in zsh?
Many thanks.
1
vote
1answer
152 views
(tmux+vim) vim didn't clear it's screen after exiting in tmux
In the tmux shell, after exiting vim, the vim screen is not cleared. I'm using zsh. It works fine without using tmux.
The same problem is also happen with screen.
I'm using vim 7.3.672, tmux 1.7, all ...
8
votes
2answers
242 views
How to autocomplete file paths in Vim, just like in zsh?
In Zsh, I can use filename completion with slashes to target a file deep in my source tree. For instance if I type:
vim s/w/t/u/f >TAB<
zsh replaces the pattern with:
vim ...
1
vote
1answer
59 views
Why does ZSH hang on empty redirection?
To truncate a file in a unixy environment you would commonly use:
$ > file
In bash (also dash), the file is truncated (or created if it doesn't exist), and then the prompt returns. In zsh, the ...

