From: Elia Pinto Date: Wed, 23 Apr 2014 13:43:58 +0000 (-0700) Subject: git-pull.sh: use the $( ... ) construct for command substitution X-Git-Tag: v2.1.0-rc0~184^2~36 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=eadf619cd434135bdfa598566376b3e3dbf9f2b5;p=git-core%2Fgit.git 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 Reviewed-by: Matthieu Moy Signed-off-by: Junio C Hamano --- diff --git a/git-pull.sh b/git-pull.sh index 6cd8ebc53..cfc589dc1 100755 --- a/git-pull.sh +++ b/git-pull.sh @@ -108,7 +108,7 @@ do -s|--s|--st|--str|--stra|--strat|--strate|--strateg|--strategy) case "$#,$1" in *,*=*) - strategy=`expr "z$1" : 'z-[^=]*=\(.*\)'` ;; + strategy=$(expr "z$1" : 'z-[^=]*=\(.*\)') ;; 1,*) usage ;; *)