git-am.sh: use the $(...) construct for command substitution
commit75ee3d7078fbcc3b87a3ae5e0cf42f46256c5da4
authorElia Pinto <gitter.spiros@gmail.com>
Tue, 25 Mar 2014 17:22:22 +0000 (25 10:22 -0700)
committerJunio C Hamano <gitster@pobox.com>
Tue, 25 Mar 2014 20:43:32 +0000 (25 13:43 -0700)
treedef8df01864e86a6a6a958fe3f67fc5e208dff70
parentb09d8552bd04b17c20f89b73e09206719f9e7b84
git-am.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 <gitter.spiros@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-am.sh