diff options
author | Elia Pinto <gitter.spiros@gmail.com> | 2015-12-23 14:45:51 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-12-28 13:37:03 -0800 |
commit | 0469cb96e354e71d6f07d4cbfe58cf7d868d6b4a (patch) | |
tree | e1836be457f03def1df978d9c5ea3bac05737970 /merge-recursive.c | |
parent | t/t5304-prune.sh: use the $( ... ) construct for command substitution (diff) | |
download | tgif-0469cb96e354e71d6f07d4cbfe58cf7d868d6b4a.tar.xz |
t/t5305-include-tag.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
perl -i -pe 'BEGIN{undef $/;} s/`(.+?)`/\$(\1)/smg' "${_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 'merge-recursive.c')
0 files changed, 0 insertions, 0 deletions