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

learn more… | top users | synonyms

0
votes
1answer
21 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
22 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
26 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 ...
0
votes
1answer
28 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 : ...
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
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
32 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
156 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 ...
0
votes
1answer
51 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
24 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
38 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 ...
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 ...
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 ...
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
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 ...
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 ...
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.)
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: ...
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 ...
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 ...
3
votes
2answers
56 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 ...
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 ...
0
votes
1answer
45 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 ...
1
vote
2answers
30 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 ...
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 ...
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 ...
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
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
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: ...
2
votes
1answer
52 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
30 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
76 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?
0
votes
1answer
68 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
98 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
42 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
75 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
3answers
480 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
31 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
25 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
69 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
43 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
48 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
66 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
43 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
52 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 ...

1 2 3 4 5 15