Zsh is a shell designed for interactive use, although it is also a powerful scripting language.

learn more… | top users | synonyms

1
vote
2answers
64 views

Why can I do “cmd & ; cmd2” in zsh but not bash?

Why can I do this in zsh: zsh$ sleep 5 &; echo foo [1] 14742 foo but not in bash? bash$ sleep 5 &; echo foo bash: syntax error near unexpected token `;' Is there any way to do the ...
2
votes
5answers
57 views

Is there a way to reference other parts of a previous command in bash; similar to history expansion

I often need to refer to a piece of text in a bash command for example: git mv _fav-locations-cluster.html.erb partials/_fav_locations_cluster.html.erb edit #1 Note that it's going from dashes -> ...
1
vote
1answer
65 views

Can zsh do smartcase completion like vim's search?

Vim has a "smartcase" feature, which makes searching case insensitive, but only if the search contains all lowercase letters. When you search on any uppercase letters, smartcase assumes you want a ...
0
votes
1answer
77 views

Why does this code throw an error when passed to `zsh -n` but not to `zsh`?

I'm trying in this example to copy all values from one associative array to another. I'm checking my code against syntax errors using zsh -n but this one throws a test:12: bar: assignment to invalid ...
9
votes
2answers
607 views

As a Ruby/Rails Developer, zsh vs bash? What's the advantage? [closed]

I've seen a lot of people recommend zsh over bash for ruby development and i'm failing to understand what zsh offers over bash? The answerable question for this post is: What benefit, specific to ...
0
votes
0answers
92 views

ZSH Terminal Emulator Compatibility

Konsole is my preferred terminal emulator. I have managed to display most characters used in themes from oh-my-zsh by switching the character set to UTF-8. Now I just have the issue of the cursor not ...
2
votes
1answer
84 views

zsh: How do I set autocomplete so that it inserts the completion when cursor is between text?

In my bash shell, when my cursor is between text, and I hit Tab, it autocompletes the filename, and when I hit Enter, it inserts the completion at the cursor, and everything after the cursor remains, ...
0
votes
0answers
231 views

Any tips on switching from bash to zsh if often using shell inside of emacs? [closed]

Related to this question: Advantages and disadvantages between zsh and emacs' (e)shell, I've read some great things about zsh, when using M-x shell, my familiar emacs shell seemed like it would ...
0
votes
1answer
725 views

sh: 39: source: not found While installing oh-my-zsh

On my Ubuntu 12.04 LTS I was trying to install oh-my-zsh by following command found on github oh-my-zsh project page. wget --no-check-certificate ...
1
vote
2answers
44 views

Number of lines returned by history

On an OSX system, ZSH shell and iterm2 terminal, I am running: $history Results are the 10 last commands. How do I increase the default number of returned lines? I can do $history -20 And ...
0
votes
1answer
81 views

start C-x e editor in sh-mode

emacs: 23.3.1, zsh: 4.3.17, gnome-terminal: 3.4.1.1 My default major mode is text-mode. When invoking C-x e in gnome-terminal I would like to set emacs to use sh-mode because it's very likely the ...
0
votes
2answers
200 views

How to kill all background processes in zsh?

As in the title - how to kill all background processes in zsh?
0
votes
2answers
255 views

zsh: update prompt with current time when a command is started

I have a zsh prompt I rather like: it evaluates the current time in precmd and displays that on the right side of the prompt: [Floatie:~] ^_^ cbowns% [9:28:31 on 2012-10-29] ...
2
votes
1answer
86 views

ZSH auto_vim (like auto_cd)

zsh has a feature (auto_cd) where just typing the directory name will automatically go to (cd) that directory. I'm curious if there would be a way to configure zsh to do something similar with file ...
1
vote
1answer
404 views

How to prevent Tmux from filling up the global PATH variable with duplicated paths?

I'm using Mac OS X, iTerm2, zsh and Tmux via Homebrew. When I start a Terminal session in iTerm2, the global PATH variable looks still fine. But when I open up a Tmux session the PATH variable is ...
1
vote
2answers
195 views

Disown, nohup or & on Mac OS zsh… not working as hoped

Hi. I'm new to the shell and am working on my first kludged together script. I've read all over the intertube and SO and there are many, MANY places where disown, nohup, & and return are explained ...
4
votes
2answers
1k views

Apple's most recent Java update removes Java Preferences, how to change from shell?

Apple's Java update this week removes the Java Preferences.app from Utilities. When working between different versions of Java in varied development environments it no longer seems easily achievable ...
0
votes
3answers
1k views

Getting exit code of last shell command in another script

I am trying to beef up my notify script. The way the script works is that I put it behind a long running shell command and then all sorts of notifications get invoced after the longrunning script ...
0
votes
0answers
290 views

zsh command autocorrection wrong a lot, how to fix [closed]

I recently switched from bash to zsh on Ubuntu 12.04 and zsh autocorrect and autocomplete are doing two funky things I could use some help correcting: When I try to run a shell script in the current ...
1
vote
0answers
79 views

Jasmine command not found

I am using zsh (with oh-my-zsh) and rbenv: both installed through homebrew. I am attempting to get jasmine to run in a standalone app. After installing the jasmine gem gem install jasmine I ...
7
votes
1answer
365 views

ZSH - Correct Shell input/output inside Vim / MacVim

This question is about using MacVim and ZSH on Mac OS X. I am using ZSH shell and it is configured to use Colored prompt, and everything works nicely with ZSH itself. However, when I set this shell ...
2
votes
3answers
326 views

Do zsh or bash have quotes that are convenient for English text?

If I use single quotes, words with apostrophes ("don't") are annoying to escape: 'Don'"'"'t do that' If I use double quotes, dollar signs and exclamation points trip it up: "It cost like \$1000\!" ...
7
votes
4answers
256 views

Run vim command from commandline

There are lots of SO questions on running shell programs from vim. What I'm wondering is if it is possible to do the reverse - i.e. $ vim :BundleInstall for example, to allow me to run ...
0
votes
1answer
201 views

Zsh and git-flow error

I'm trying to use the oh-my-zsh git-flow plugin and getting the following error. ➜ ~/www/ git:(develop) git flow feature feature flags:FATAL zsh shwordsplit option is required for proper zsh ...
0
votes
2answers
92 views

Index arguments in zsh

With zsh I can get the fifth argument simply with $5. But what if 5 is a variable? I've come up with this way to print out the first five arguments by indexing (as opposed to just echo $1 $2 $3 $4 ...
2
votes
3answers
1k views

oh-my-zsh slow, but only for certain Git repo

I recently started using Zsh and it's awesome. Unfortunately, for the project I consider my "main" project, everything is slow. What I mean is that every time I run a command - ls, for example - ...
0
votes
2answers
317 views

why is zsh globbing not working with find command?

I have been using zsh globbing for commands such as: vim **/filename vim *.html.erb and so on, but when I type in something like: find . -name *mobile* I get the response: zsh: no matches ...
0
votes
2answers
1k views

Command not found after npm install in zsh

I'm having some problems installing vows via npm in zsh. Here's what I get. I tried installing it with and without the -g option. Do you have any idea what's wrong here? [❤ ...
2
votes
1answer
609 views

rvm doesn't set default ruby with zsh

I'm using zsh in OSX with rvm, but it doesn't load the default ruby at login: in my .zshrc I have source $ZSH/oh-my-zsh.sh [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" ...
1
vote
3answers
417 views

RVM set ruby default, when open new terminal erase the RVM setting, go back to system ruby

I just got a new MacBook Pro and tried to setup the RVM in the system. I installed RVM and set the default to ➜ rvm list default Default ...
0
votes
1answer
49 views

Makefile command conflicts with folder name

I'm having a small problem with my Makefile, where it conflicts with a folder. First of all I'm using the Makefile to run several shell commands Per example: Makefile contents: test: ...
3
votes
2answers
140 views

Emacs: Default binary to run with M-x ansi-term

Is there a way to have Emacs to prompt by default for a binary of my choice when running M-x ansi-term. It always asks me for /bin/zsh but I have a new installation of zsh in a different path. ...
0
votes
1answer
58 views

Converting time formats in zsh

I have created a z shell script that takes a time option argument. (ex: --time 00:03:30). I would like the user to be able to enter the time in a format other than HH:MM:SS. My script can already ...
0
votes
1answer
427 views

Zsh: read lines from file into array

I'm trying to read in a file as an array of lines and then iterate over it zsh, and the code I've got works most of the time, except if the input file contains certain characters (such as brackets). ...
1
vote
2answers
139 views

How can I get Zsh to display the RVM gemset?

I'd like to have Zsh diplay the current RVM Ruby and gemset, for instance: $ [ ethan@devlaptop ~/ ruby-1.9.3-p194@some_gemset ] I've installed oh-my-zsh and I've activated the RVM plugin in my ...
0
votes
2answers
151 views

Bash has colors, bold and underlined characters. Why not Italic? [closed]

I am naming bash, but the question applies to other linux shells as well. Is there a reason why italic characters have not been included?
0
votes
0answers
47 views

Escaping a percent symbol in zsh

How would I add a percent symbol to a variable in zsh? export number_e164='%2B12125551234'; echo $number_e164; Returns 1m12125551234%2B12125551234 on my machine. This article suggests using two ...
1
vote
2answers
193 views

zsh preexec command modification

Is there a way to modify the command that is about to execute? I would like to redirect the output to a file, as well as print it on the terminal. I found that ls > file.txt | cat does the job, so ...
0
votes
1answer
108 views

zsh completion difference

I have seen many do this autoload -Uz compinit compinit and others do this autoload -U compinit compinit -i I would like to know the difference. which one should I use?
0
votes
1answer
120 views

Rename multiple files with zmv but not directories

I would like to rename multiple files (add an extension).. i can use zmv of zsh with autoload zmv zmv -n '(**/)(*)' '$1$2.myextension' but this will rename also all the dirs that are inside the ...
2
votes
2answers
965 views

Bower, Grunt & zsh: command not found:

I have installed Grunt & Bower & I'm using ZSH. when I type bower --help or grunt anything I get zsh: command not found: bower or zsh: command not found: grunt how can I fix this?
1
vote
1answer
151 views

Square brackets in zsh completion function argument description, possible?

Basically, I'm wondering if its possible to do this: #compdef foo _arguments \ '--arg=[Description of --arg [With square brackets in the string!]]' \ without getting an invalid option error due ...
5
votes
2answers
902 views

How to redirect stdout+stderr to one file while keeping streams separate?

Redirecting stdout+stderr such that both get written to a file while still outputting to stdout is simple enough: cmd 2>&1 | tee output_file But then now both stdout/stderr from cmd are ...
3
votes
2answers
115 views

Ignore ORIG_HEAD in zsh git autocomplete

I use oh-my-zsh and git autocompletion. If I type git checkout org and hit TAB I get these results: ORIG_HEAD origin/HEAD origin/mybranch How can I make the autocompletion to ignore ORIG_HEAD?
1
vote
1answer
125 views

remap zsh terminal hotkey

I'm using the yadr dotfiles and ZSH on my mac. I use the delimiter "jj" to switch from insert to edit mode in vim, and I did that by putting imap jj <esc> in ~/.gvimrc. However, zsh / yadr ...
1
vote
1answer
291 views

Oh My ZSH theme not matching colors

I'm trying to make this zsh theme work: https://gist.github.com/3712874 I've made some small changes to it but there is still one problem. It seems that the right triangle glyph doesn't get the same ...
0
votes
1answer
341 views

ZSH iterm2 increase number of lines history

Not sure if this is zsh, iterm2 or the interaction between them. Trying to change the number of recallable lines in the terminal - not the command history, the output history. In .zshrc I have : ...
0
votes
1answer
51 views

How big can zsh history get? How far back does it go?

I don't want to lose and command history. Does zsh_history ever truncate the file? If so, under what conditions? Also, do any other processes act upon it?
1
vote
2answers
220 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 ...
3
votes
2answers
855 views

Adding an alias for Sublime Text to zshrc

Just have a quick question on how to add an alias for SublimeText to my ZSH. I've been to their site where they tell you how to do it within bash, but I don't understand how to do it within ZSH. It ...

1 3 4 5 6 7 15