0
votes
3answers
457 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: ...
1
vote
1answer
52 views

show git diff and git status simultaneously

I'd like a way to get a pager-view (less) of a buffer of git diff and git status to get a nice complete summary of the state of my working changes. It helps because git diff alone will hide the staged ...
1
vote
2answers
39 views

How can I modify zsh to autocomplete `source` with the local directory before the $PATH?

I can't count the number of times I've typed: source en<tab> only to be left with a bunch of garbled text on the screen because it sourced the program env instead of the local env.sh. I tried ...
0
votes
1answer
196 views

ZSH not recognizing my aliases?

Using iTerm2 with zsh and it isn't recognizing my aliases. Sometimes I have to work in an IDE and can't just easily vim something and the stupid people thought it a good idea to name their ...
1
vote
1answer
114 views

Order of arithmetic expansion

Consider the following: for i in 1 2 3; do echo $(( j += 1 ))& done According to (my reading of) the sh language spec, section 2.3 paragraph 5, the arithmetic expansion of j += 1 should take ...
3
votes
3answers
1k views

how to tell if it's using zsh or bash

I've a question on how to tell which shell the user is using. Suppose a script that if the user is using zsh, then put PATH to his .zshrc and if using bash should put in .bashrc. And set rvmrc ...
3
votes
2answers
503 views

What level of expertise would this interview item suggest? unset foo; echo bar | read foo; echo $foo [closed]

Imagine that you are preparing for an in-depth technical interview and you are asked to rate your expertise in shell scripting (hypothetically on a scale of one to ten). Then look at the following ...
14
votes
4answers
2k 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 ; ...
6
votes
3answers
283 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 ...
0
votes
3answers
153 views

Is there a scripting tool for Mac?

Is there a tool for Mac OS like Windows VBScript? I want to write some script which generates folders automatically and copy & paste files according to input.
3
votes
3answers
459 views

How to handle “--” in the shell script arguments?

This question has 3 parts, and each alone is easy, but combined together is not trivial (at least for me) :) Need write a script what should take as its arguments: one name of another command ...
1
vote
1answer
112 views

“*.foo” shell function

I want to add to my .zshrc function that will perform operations with file that has ".c" suffix. For example, *.c () { gcc $0 -o ${0%.*} } must perform "gcc foo.c -o foo" when I am entering ...