Zsh is a shell designed for interactive use, although it is also a powerful scripting language.
4
votes
3answers
413 views
bash/zsh input process substitution gives syntax error in conjunction with while
These work fine and do what they should (print the contents of the file foo):
cat <foo
while read line; do echo $line; done <foo
cat <(cat foo)
However this gives me a syntax error in zsh:
...
0
votes
1answer
23 views
zsh: How to backspace through to the previous line?
When I type a multiline command like
$ for i in 1 2 3; do
for> echo $i
for> done
1
2
3
and then recall the command with up-arrow, backspacing stops at the start of the last line (i.e. after ...
1
vote
1answer
23 views
What makes Ctrl+q work in zsh
I'm a zsh user who started off with a plain oh-my-zsh configuration and now I try to learn zsh by importing the parts I care about from oh-my-zsh into my own .zshrc and then completely remove ...
0
votes
2answers
27 views
Rename a file in a directory without retyping the directory name
Say we have a file test.txt in my_directory that I want to rename to yeah.txt.
Is there a way with zsh (or even just bash, just to know) to avoid retyping my_directory?
I find the following a bit ...
5
votes
3answers
552 views
Show zsh function definition (like bash “type myfunc”)
How do I show the definition of a function in zsh? type foo doesn't give the definition.
In bash:
bash$ function foo() { echo hello; }
bash$ foo
hello
bash$ type foo
foo is a function
foo ()
{
...
0
votes
1answer
31 views
zsh: Heroku toolbelt not found anymore
I recently switched to zsh, pretty happy about that. Except that the heroku toolbelt doesn't work anymore ...
Here is what I have when I type heroku -v :
...
2
votes
4answers
3k views
What is the definitive way to install/upgrade/set the default version of ZSH? [closed]
OSX Mountain Lion ships with ZSH 4.3.1 in /bin/zsh. After downloading, ./configure, make, make check, and make install-ing version 5.0.0,
which zsh still returns /bin/zsh/
and zsh --version still ...
71
votes
6answers
20k views
Worth switching to zsh for casual use? [closed]
The default shell in Mac OS X is bash, which I'm generally happy to be using. I just take it for granted. It would be really nice if it auto-completed more stuff, though, and I've heard good things ...
0
votes
0answers
26 views
Zsh and environment variable : how to track changes? [closed]
How can I control or trace the mutations made on my zsh environment ?
Here is the problem :
When I edit a brew formula, it uses vim as an editor.
Which makes sense as I have
~ ❯❯❯ env
EDITOR=vim
...
0
votes
3answers
487 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
8 views
bind ctrl+insert in zsh? [migrated]
What key combo do I use to bind ctrl+insert in my zshrc? I tried entering quoted-insert mode (ctrl+V) but pressing ctrl+insert does not output anything.
1
vote
1answer
33 views
How does one enable system paste in vim using zsh shell in Ubuntu? [closed]
I've recently changed shell from bash to zsh and I'm having a problem in vim, in that my system paste no longer works. Before changing shell, I was able to paste from my system clipboard using =+p but ...
2
votes
0answers
164 views
using zsh shell to install ruby-2.0.0-195 doesn't work
sorry this is my first time to post my question here. I am currently using zsh shell and I keep having trouble with installing ruby. While I run rvm install ruby-2.0.0-p195, it shows the error message ...
0
votes
2answers
25 views
Zsh, color in aliasses
I'm just switch to zsh and now adapting the alias in which was printing some text (in color) along with a command.
I have been trying to use the $fg array var, but there is a side effect, all the ...
1
vote
2answers
36 views
getting the pid of a process in zsh
I am coding on a Red Hat Machine and I want to get the process id of a process in the interactive mode as well as the in a script.
In bash 'pidof' works but not in zsh.
What would be the equivalent ...
1
vote
4answers
65 views
$SGE_TASK_ID not getting set with qsub array grid job
With a very simple zsh script:
#!/bin/zsh
nums=(1 2 3)
num=$nums[$SGE_TASK_ID]
$SGE_TASK_ID is the sun-grid engine task id. I'm using qsub to submit an array of jobs.
I am following what is ...
0
votes
1answer
52 views
ZSH – Change color in tty [closed]
I use zsh in tty (so without X) and I would like to know if it is possible to change the colors. Not the prompt colors, but by example the "htop" colors, or the colors of directory and file with ls ...
0
votes
1answer
25 views
dotfiles errors | /Users/marif/.aliases:79: bad option: -t
I am pretty new to OSX but everything is almost settled down, I had configured Z and ZSH earlier and lately come to know about paulirish dot files from https://github.com/paulirish/dotfiles and ...
0
votes
3answers
39 views
Make stdin and stderr visible
is there a way to make stdin and stderr visible in unix bash/zsh/whatever?
Maybe turn the stderr output to red or something like that.
It is always a pain if you are figuring out why you can't parse ...
1
vote
1answer
35 views
How to make select operator behave similar to the bash in zsh
I'm trying to use next code in zsh:
select var in $list; do
if [ x"$var" != x"" ]; then
echo $var
return
fi
done
In bash that would result to something like this:
First
Second
Third
...
1
vote
2answers
31 views
How to convert ZSH ls timestamps to %Y-%m-%d?
Anyone know how to convert ZSH ls timestamps to %Y-%m-%d?
From This(ZSH):
host1% ls -lrt | tail -1
-rw-r----- 1 user group 4802 Mar 21 15:41 get.csv
To This(BASH):
user@host1:/home/user> ls ...
0
votes
0answers
17 views
How can I reverse the history numbering?
I am a unix addict, and many of the machines I use (at home and at work) are now quickly passing the 10,000 command mark. I like to keep all of the commands I issue readily available which is why I ...
0
votes
0answers
15 views
I can't see colors in zsh through SSH [migrated]
I recently moved from bash to ZSH and oh-my-zsh (which is so far wonderful) and installed it in my desktop, laptop and hosting (dreamhost) with a theme called agnoster.
I also installed solarized and ...
0
votes
1answer
19 views
Close socket opened by zsocket in zsh
I've done:
% zmodload zsh/net/socket
% zsocket -d 20 MY_SOCKET
# used the socket a bit
Now how do I close the socket's FD? (FD 20 here.)
2
votes
3answers
42 views
How to compare contents of two directoriers in bash?
Lets say there are two dirs
/path1 and /path2
for example
/path1/bin
/path1/lib
/path1/...
/path2/bin
/path2/lib
/path2/...
And one needs to know if they are identical by contents (names of ...
73
votes
3answers
9k views
What does [nyae] mean in Zsh?
I run the following command unsuccessfully
dir
and I get
zsh: correct 'dir' to 'gdir' [nyae]?
What does [nyae] mean in Zsh?
2
votes
3answers
215 views
Unable to understand zsh error while executing rake command
When I execute %rake college:create[demo], I get the following error,
zsh: no matches found: college:create[demo]
Anybody has a solution for this?
when I execute rake -T, this is what I get when ...
0
votes
0answers
41 views
bash/zsh: which files get loaded at login?
Today when I checked my $PATH variable in Z shell (on OS X 10.8.3), I got the following result (I broke the lines for clarity):
/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:
...
0
votes
1answer
46 views
Oh My ZSH & Vim Insert Cursor
Currently using Oh My ZSH, however, when using Vim in INSERT mode, at the end of a line, when using arrows to navigate, the insert mode ends when you hit the end of the line, making it impossible to ...
2
votes
1answer
37 views
Zsh escape backslash
I noticed a while ago already that in zsh, you can get a \ by typing \\ like in bash.
> echo \\
\
But, there's a strange phenomenon with 4 backlashes in zsh.
bash$ echo \\\\
\\
zsh> echo ...
1
vote
2answers
222 views
Looking for ALT+LeftArrowKey solution in zsh
I just recently switched from bash to zsh, however I miss my ALT+LeftArrowKey and ALT+RightArrowKey to go back and forth a word at a time.
Right now, if I press ALT+LeftArrowKey I go back a couple of ...
0
votes
0answers
21 views
ZSH cloudapp command not working
I've installed cloudapp_api multiple times with:
sudo gem install cloudapp_api
I just get this tho when running cloudapp wat.jpeg
"You need to install cloudapp_api: gem install cloudapp_api"
I ...
0
votes
1answer
69 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 ...
3
votes
2answers
57 views
zsh - show if git branch have unpushed commitments
Actually Im using a slightly modified version of the oh my zsh theme blinks. It show a SSH statement just for optical difference to my local terminal.
Also it show the branch and a little star if ...
54
votes
16answers
31k views
How to add a progress bar to a shell script?
When scripting in bash or any other shell in *NIX, while running a command that will take more than a few seconds, a progress bar is needed.
For example, copying a big file, opening a big tar file.
...
0
votes
1answer
99 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 ...
0
votes
0answers
37 views
ZSH tab completion menu [closed]
I've just started using ZSH on OS X with oh-my-zsh and am having an issue with tab completion.
it seems to work okay but OS X always plays an alert beep on the first tab if it doesn't find an exact ...
2
votes
1answer
41 views
zsh: show completion group names
I'm writing some zsh completions and am stuck on how to have multiple groups of completions.
I added the group name with the -J parameter docs.
compadd -J group1 "$@" completion1 completion2
compadd ...
10
votes
6answers
5k views
E185: Cannot find color scheme solarized
I have Solarized installed via pathogen and it's been working fine in both terminal and MacVim on my Mac. Today, I tried setting up an Ubuntu box on Linode. I just cloned my dotfiles and symlinked to ...
1
vote
2answers
31 views
How to read 1 symbol in zsh?
I need to get exactly one character from console and not print it.
I've tried to use read -en 1 as I did using bash. But this doesn't work at all.
And vared doesn't seem to have such option.
How to ...
0
votes
1answer
149 views
ZSH Shell history not working
I recently switched from bash to zshell but my history does not seem to be working. when I press the up arrow I don't get the previous commands. Is the shortcut different? Also how do I enable shared ...
1
vote
2answers
80 views
replace strings in zsh command line
I use zsh and emacs keybindings. Some time I need to execute the same command with different input. The input ususally have common substrings. Is there an easy way to replace parts of previous command ...
2
votes
2answers
118 views
Wrong coloring w/ Powerline in Terminal.app
I setup tmux powerline, and installed all the corresponding fonts. The problem I am running into now is colors not appearing the same when acting as a background in the hardline.
I made sure to ...
2
votes
1answer
53 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
2answers
77 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 ...
0
votes
1answer
51 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
94 views
Mysterious phantom rm -i alias
I'm using zsh on Mac OS 10.6.8.
So, all of a sudden one of my machines asks me for confirmation every time I rm.
Frankly, I hate this with an abiding passion. I've never had a problem with rm, and I ...
1
vote
2answers
57 views
Remove current directory from variable containing path
I have a variable which contains the current directory including several parents. For example:
$ pwd
/Users/simont/repositories
$ echo $current
~/repositories
I can strip everything except the ...
0
votes
1answer
32 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
39 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: ...

