diff options
author | Elia Pinto <gitter.spiros@gmail.com> | 2014-03-25 10:22:22 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-03-25 13:43:32 -0700 |
commit | 75ee3d7078fbcc3b87a3ae5e0cf42f46256c5da4 (patch) | |
tree | def8df01864e86a6a6a958fe3f67fc5e208dff70 /git-quiltimport.sh | |
parent | check-builtins.sh: use the $(...) construct for command substitution (diff) | |
download | tgif-75ee3d7078fbcc3b87a3ae5e0cf42f46256c5da4.tar.xz |
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>
Diffstat (limited to 'git-quiltimport.sh')
0 files changed, 0 insertions, 0 deletions