Tagged Questions
Zsh is a shell designed for interactive use, although it is also a powerful scripting language.
33
votes
11answers
9k views
What's in your .zshrc?
I always find it interesting what people put in their programming environments. After reading the same basic question for .vimrc and .bashrc, I have to ask for my favorite shell. So what's in yours?
...
26
votes
6answers
4k 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 ...
21
votes
3answers
2k views
Unable to understand the question by Zsh
I run the following command unsuccessfully
dir
and I get
zsh: correct 'dir' to 'gdir' [nyae]?
What does [nyae] mean in Zsh?
19
votes
11answers
13k views
How to add a progress bar to a bash script?
When scripting in bash or any other shell in *NIX, while running a command that will take more than a few seconds, a prgress bar is needed.
For example, copying a big file, opening a big tar file.
...
12
votes
4answers
139 views
Why does `if $(true) ; then … fi` succeed?
Inspired by this question:
What should an if statement do when the condition is a command substitution where the command produces no output?
NOTE: The example is if $(true); then ..., not if true ; ...
12
votes
1answer
198 views
hiding certain options in zsh autocompletion
There are several commands that have esoteric options that I don't use often. For example, git has 'check-attr'. I use 'git checkout' very often, however, so I'd like,
git ch
to complete to
git ...
9
votes
2answers
932 views
Advantages and disadvantages between zsh and emacs' (e)shell
i have currently switched over to emacs (aquamacs) and am in the process of migrating my entire workflow into it one step at a time (org-mode, dired, etc., from pathfinder, notational velocity, etc.).
...
9
votes
1answer
354 views
Is there a hook in Bash to find out when the cwd changes?
I am usually using zsh, which provides the chpwd() hook. That is: If the cwd is changed by the cd builtin, zsh automatically calls the method chpwd() if it exists. This allows to set up variables and ...
8
votes
1answer
260 views
Can I profile my .zshrc/.zshenv?
It seems like my shell is taking way too long to start up. Is there any way to profile it so I can figure out what's slowing it down so much?
8
votes
1answer
877 views
Unable to have Bash-like C-x-e in Zsh
I found the following command in Bash which Zsh does not have in the same buttons at the thread.
Ctrl-x-e
It opens the current input in terminal to an editor.
How can you have the same command in ...
7
votes
1answer
2k views
RVM is not working in ZSH
I'd like to try out the ZSH shell on my Mac, but I also do a lot of Ruby and Rails development, so I use RVM quite a bit too. The problem is that I can't seem to get RVM to work in ZSH, and it's ...
7
votes
1answer
983 views
Zsh questioning correct command, How to stop!
I just started using Zsh lately for some of the integrated support in the shell prompt for my Git status etc.
When I type in ruby -v, to confirm the version of ruby I'm running, Zsh asks if I want to ...
7
votes
1answer
2k views
How to enable git file tab completion with zsh compinit?
I have a problem with the zsh tab completion: After running:
autoload -U compinit
compinit
Git tab completion for files does not work any more. For example if I type git add my_f to complete ...
7
votes
4answers
3k views
To get a prompt which indicates Git-branch in Zsh
I run the following codes separately as my prompt unsuccessfully in .zshrc. This suggests me that apparently I do not have a program called __git_ps1. It is not in MacPorts.
#1
PROMPT="$(__git_ps1 " ...
7
votes
4answers
8k views
How can I change the color of my prompt in zsh (different from normal text)?
To recognize better the start and the end of output on a commandline, I want to change the color of my prompt, so that it is visibly different from the programs output. As I use zsh, can anyone give ...
6
votes
1answer
282 views
git show HEAD^ doesn't seem to be working. Is this normal?
I'm using Zsh and and trying to run git show for a project to see my revision history. If I do
git show HEAD
it works fine showing me my last commit, however the following commands don't work
...
6
votes
3answers
423 views
ZSH: automatically run ls after every cd
So I've got ZSH doing all this cool stuff now, but what would be REALLY awesome is if I could get it to run 'ls -a' implicitly after every time I call 'cd'. I figure this must go in the .zlogin file ...
6
votes
5answers
2k views
Zsh tab-completion for “cd ..”
How can I configure the Zsh tab-completion such that when I type cd ..<TAB> it expands to cd ../ and after pressing <TAB> again proposes the folders in the parent directory for completion?
...
6
votes
4answers
2k views
Getting Emacs ansi-term and Zsh to play nicely
I've been trying to use Zsh within my emacs session, without emacs remapping all the Zsh keys. I found ansi-term works pretty well for this but, I'm still having some problems. I was getting lots of ...
5
votes
4answers
82 views
ZSH: How to time a block of code?
In bash I am able to write a script that contains something like this:
{ time {
#series of commands
echo "something"
echo "another command"
echo "blah blah blah"
} } 2> $LOGFILE
In ZSH the ...
5
votes
1answer
166 views
zsh: use completions for command X when I type command Y
In zsh, I have a function called g which acts like this:
with no arguments, call git status
with one or more arguments, delegate to git with all given arguments - i.e. call git $@
I would like the ...
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 ...
5
votes
2answers
2k views
To get colors to Less in Ubuntu's Zsh
How can you get similar highlightings to Zsh's Less than Bash's Less in Ubuntu?
I switched from OS X to Ubuntu. My Less do not work as expected in Zsh.
Manuals in my Less are green and black with or ...
5
votes
2answers
877 views
how to integrate ZSH and (i)python?
I have been in love with zsh for a long time, and more recently I have been discovering the advantages of the ipython interactive interpreter over python itself. Being able to cd, to ls, to run or to ...
5
votes
3answers
856 views
Unable to make a backward TAB as Shift-TAB in Zsh
Problem: to navigate backwards with TAB in Zsh similarly as in Firefox by
Shift-TAB
Example of what Shift-TAB should do
I run the following code in terminal
ls <TAB>
I get
A B C D E F G ...
5
votes
1answer
2k views
How can you export your .bashrc to .zshrc?
I am trying to move to zsh from Bash.
I put my .bashrc directly to my .zshrc, and it caused a lot of errors when I try to use Bash again.
How can you export your .bashrc to .zshrc?
5
votes
7answers
662 views
What's the best practice for changing working directories inside scripts?
Do you think changing directories inside bash or Perl scripts is acceptable? Or should one avoid doing this at all costs?
What is the best practice for this issue?
5
votes
4answers
5k views
Home/End keys in zsh don't work with putty
I'm running zsh as the default shell on a Ubuntu box, and everything works fine using gnome-terminal (which as far as I know emulates xterm). When I login from a windows box via ssh and putty (which ...
4
votes
2answers
86 views
Match unicode character in zsh regex
I want to make sure that a variable does not contain a specific character (in this case an 'α'), but the following code fails (returns 1):
FOO="test" && [[ $FOO =~ '^[^α]*$' ]]
Edit: ...
4
votes
1answer
51 views
Is it necessary to specify traps other than EXIT?
I see a lot of shell scripts that do:
trap cmd 0 1 2 3 13 15 # EXIT HUP INT QUIT PIPE TERM
In every shell I have access to at the moment, all the traps other than 0 are redundant, and cmd will be ...
4
votes
1answer
181 views
map jj to Esc in inputrc (readline)
How can I map jj to Esc in inputrc so it gets picked up by apps using GNU Readline (python, mongoshell, ...)
all works fine on zsh using:
bindkey -M viins 'jj' vi-cmd-mode
this is my current ...
4
votes
3answers
250 views
How can I format the output of a bash command in neat columns
I have a function which outputs many rows of information which I want to format in columns. The problem is that the width of any particular "cell" (if I may use that term) of data is variable, so ...
4
votes
3answers
455 views
How do zsh ansi colour codes work?
I want to make my hostname in my terminal orange. How do I do that?
4
votes
1answer
251 views
Shell function/alias for rails console/server etc, to work with rails 2 & 3
Rails 3 introduced the rails {c,s,g} command format for invoking the console, server, generators and so on.
Back with rails 2 I had alias c=script/console and others set up to alleviate typing.
I'd ...
4
votes
1answer
165 views
How can I intermittently show my history command number in my shell prompt?
How can I intermittently show my history command number in my shell prompt? For instance, rather than showing it in EVERY prompt, just do it every 7 times. (I'm using zsh, but I think bash should be ...
4
votes
3answers
438 views
How to tail -f the latest log file with a given pattern
I work with some log system which creates a log file every hour, like follows:
SoftwareLog.2010-08-01-08
SoftwareLog.2010-08-01-09
SoftwareLog.2010-08-01-10
I'm trying to tail to follow the latest ...
4
votes
0answers
178 views
Zsh Package Suggestion
I've just migrated to Zsh from Bash, but I have a bit of a problem in it. In bash on an Ubuntu system, when I type the name of a command which does not exist, Bash searches the apt database for a ...
4
votes
2answers
371 views
I have a bash-tab-completion script. Is there a simple way to use it from zsh?
I have a bash-tab-completion script for Apache's Hadoop. Normally, I use zsh as my day-to-day shell. It tends to be pretty bash-like when I need it to be, but it looks like the tab-completion ...
4
votes
2answers
2k views
zsh for loop exclusion
This is somewhat of a simple question, but for the life of me, I cannot figure out how to exclude something from a zsh for loop. For instance, let's say we have this:
for $package in ...
4
votes
7answers
355 views
Translate parse_git_branch function to zsh from bash (for prompt)
I am using this function in Bash
function parse_git_branch {
git_status="$(git status 2> /dev/null)"
pattern="^# On branch ([^${IFS}]*)"
if [[ ! ${git_status}} =~ "working directory clean" ...
4
votes
1answer
1k views
zsh alias -> function?
Suppose I have:
alias gg="git grep"
then stuff like:
gg "int x"
works, but
gg int x
gets complaints. Is there a way to rewrite gg as a function in zsh so that it takes all the arguments ...
4
votes
1answer
439 views
Kill/Yank (cut/paste) in ZSH
I use zsh and have the Emacs keybindings set up for it. I'd love to have it replicate all my regular Emacs text manipulation commands. One which I miss is the Kill/Yank keys. It would be nice if I ...
4
votes
6answers
4k views
Opening a new terminal tab in OSX(Snow Leopard) with the opening terminal windows directory path
I've been Googling for a while looking for a simple way to do this, and I can't find one.
I have a custom terminal environment set up (zsh) with various aliases and functions to make things easier. ...
4
votes
2answers
614 views
How exactly does zsh expand globs?
I have a C program that displays it's command-line by iterating through the argv variable.
#include <stdio.h>
int main(int argc, char *argv[]){
int i = 0;
printf("----------\n");
...
4
votes
4answers
2k views
How does “while (sleep 100 &!) do; done” work in zsh, and how could it be replicated in bash?
According to wikipedia ( http://en.wikipedia.org/wiki/Fork_bomb ), the forkbomb ":(){ :|:& };:" can be stopped with the zsh command "while (sleep 100 &!) do; done", which will supposedly spawn ...
4
votes
4answers
2k views
Case-insensitive Glob on zsh/bash
I need to list all files whose names start with 'SomeLongString'. But the case of 'SomeLongString' can vary. How?
I am using zsh, but a bash solution is also welcome.
3
votes
1answer
50 views
Weird character zsh in emacs terminal
When using the terminal in emacs (M-x term) under MacOS for some reason it always posts the characters 4m before every line in zsh and always prints 2 lines containing the user info such as
...
3
votes
4answers
40 views
/bin/bash printf does not work with other LANG than C
I have a really weird problem with /bin/bash and a script that uses printf to format a string.
My script looks like this
rt=$(printf "%.3f" 13.234324245)
with the difference, that i compute the ...
3
votes
3answers
71 views
how to not forget to delete debug lines in code
This seems to me to be a novel idea (since i haven't found any solutions or anyone having implemented it)...
A shell script that automatically runs whenever you git commit or whatever that will ...
3
votes
1answer
49 views
Sum file sizes that contain K, M, G, T
If (in zsh) I have an array that contains something like this:
echo ${fsizes[@]}
9.5M 100M 5G 15G 1.2T
is there an easy way to get the sum of these in an output of choice (i.e. bytes, megabytes, ...