git-pull.sh: use the $( ... ) construct for command substitution
authorElia Pinto <redacted>
Wed, 23 Apr 2014 13:43:58 +0000 (06:43 -0700)
committerJunio C Hamano <redacted>
Wed, 23 Apr 2014 22:17:02 +0000 (15:17 -0700)
commiteadf619cd434135bdfa598566376b3e3dbf9f2b5
tree2c6f2486925cb97acd9e7b5160e59e294635a957
parentfaf58f4ee6a5599c3b8790b770d6e1736174b7a3
git-pull.sh: use the $( ... ) construct for command substitution

The Git CodingGuidelines prefer the $(...) construct for command
substitution instead of using the backquotes `...`.

The backquoted form is the traditional method for command
substitution, and is supported by POSIX.  However, all but the
simplest uses become complicated quickly.  In particular, embedded
command substitutions and/or the use of double quotes require
careful escaping with the backslash character.

The patch was generated by:

for _f in $(find . -name "*.sh")
do
   sed -i 's@`\(.*\)`@$(\1)@g' ${_f}
done

and then carefully proof-read.

Signed-off-by: Elia Pinto <redacted>
Reviewed-by: Matthieu Moy <redacted>
Signed-off-by: Junio C Hamano <redacted>
git-pull.sh
git clone https://git.99rst.org/PROJECT