1
vote
1answer
44 views

Autocomplete backslashes in zsh

Is there a zsh script that would allow me to auto complete spaces with backslashes? For example: assume there is a folder called "My folder" with a space in between. If I want to get inside, I cd ...
1
vote
2answers
55 views

Look for a file in parent dir if it is not in current dir

I'm trying to make a shell function that looks for a file existence in the current dir. If the file doesn't exists if the current dir, it should try the parent dir, and go up to the root of the ...
0
votes
1answer
283 views

prettify_json.rb not working from command line in zsh

I keep getting Command Not Found: prettify_json.rb from the command line. I'm using zsh and rvm so, I'm not sure if it has something to do with the paths setting in my .zshrc. I've compared it to ...
0
votes
1answer
66 views

Zsh : for loop makes failing awk pattern

I’m writing some scripts to manage users with specifics quotas on a server. So, to apply a quota like 10GB to all the users in the group quota10, I’m using "setquota -p", but I have several groups. ...
1
vote
1answer
798 views

tmux run command - “returned 126”, what does that mean?

In my .tmux.conf I have this line: bind r run "~/bin/tmux_renum" But it doesn't work (it's supposed to renumber the tab windows - see http://brainscraps.wikia.com/wiki/Renumbering_tmux_Windows). It ...
1
vote
3answers
965 views

Shell Scripting - Testing if a directory exists either in the current directory or in a parent / ancestor directory

I am using the following code to detect if the folder .hg exists in the current directory. If it doesn't, then the function returns: if [ ! -d ".hg" ]; then return fi How can I modify this to ...
0
votes
1answer
262 views

How to find zsh environmental variable from bash script?

I'm writing a bash installation script that handles installation for different shells. I need to copy a function into zsh's $fpath. I thought I had a solution with /usr/bin/env zsh -c "echo $fpath" ...
1
vote
2answers
78 views

find and replace script (difficult issue…NEED HELP!)

I've written a function in zsh to find and replace a specific number with a keyword that I'll use later on in a larger script. Here's what I've got: function replace_metal() { for file in "$@"; do ...
1
vote
2answers
302 views

Positional parameters in a script read with the source builtin in zsh

I have noticed some weird behavior when sourcing another script within my shell script. The script that I am sourcing to setup the environment in my shell script takes an optional argument, e.g. ...
1
vote
1answer
110 views

Execute a script when moving to it's dir?

I'm playing around with virtualenv and pip, but I find it quite restrictive to have to "source bin/activate" each time I come into a virtualenv dir. So I'd like to automate it. Any ideas of a way to ...