summaryrefslogtreecommitdiff
path: root/unimplemented.sh
diff options
context:
space:
mode:
authorElia Pinto <gitter.spiros@gmail.com>2015-12-22 15:10:31 +0100
committerJunio C Hamano <gitster@pobox.com>2015-12-27 15:33:13 -0800
commit21c6f9875a01484875ff17ec472568e1aadceb8f (patch)
tree6f2d5278e8519acf9ba34bea2e3fd6122fe988e6 /unimplemented.sh
parente429dfd5e49e8eb5471ae82cfdd9a86bc1f587f4 (diff)
downloadgit-21c6f9875a01484875ff17ec472568e1aadceb8f.tar.gz
test-sha1.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> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'unimplemented.sh')
0 files changed, 0 insertions, 0 deletions