Thread (1 message) 1 message, 1 author, 2016-06-15

Re: [PATCH 1/2] Move the pick_author code to git-sh-setup

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:43:18

Johannes Schindelin [off-list ref] writes:
That is well possible. Quoting in shell is such a hassle, and I never seem 
to get it right.

Therefore I did a minimal test,...

So I thought that it was okay.
Try the small test script in the message you are responding to.
It gives me:

        $ sh ./1.sh
        A= d e
        B= d  e

A quick rule of thumb is that the only place that you can get
away by not quoting is straight assignment to another variable,
like so:

	var='a  b c '
        another=$var	;# another="$var" is fine but unnecessary.

Similarly for

	another=$(some command)

which is Ok not to dquote.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help