Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
7k views

How to make zsh run as a login shell on Mac OS X (in iTerm)?

When zsh is set as a login shell on Mac OS X, when it is started by iTerm, zsh doesn't consider that it's being run as a login shell, although it's started as ‘-zsh’ (‘-’ is put as the first character ...
2
votes
1answer
81 views

Mercurial Branch / File name completion in ZShell

I've been using Zsh as a Bash replacement for a while now. One thing that doesn't work as well anymore is the completion for branch and uncommitted file names for mercurial. If previously (bash) I ...
2
votes
1answer
775 views

Unable to convert Bash script to Zsh script

I need to change the following Bash code to Zsh TODO_OPTIONS="--timeout --summary" cd () { builtin cd "$@" RV=$? [ $RV = 0 -a -r .todo ] ...
1
vote
3answers
1k views

Recommendation - Zsh vs FishShell. Scripting, productivity and poweruser perse

I have spent sometime trying to pick one, on net comparisons are for zsh vs bash and fish vs bash. But, I Could not find any comparison for zsh vs fish. I program in c/c++, apart from hello-world ...
0
votes
1answer
168 views

How can I pause in zsh?

I want to write this bash loop for zsh while true; do echo "print something"; read -p "pause"; done This loop echos, then waits for the user to press enter. If I enter it as is, the read statement ...