t/t5570-git-daemon.sh: use the $( ... ) construct for command substitution
authorElia Pinto <redacted>
Mon, 4 Jan 2016 09:10:48 +0000 (10:10 +0100)
committerJunio C Hamano <redacted>
Mon, 4 Jan 2016 21:45:05 +0000 (13:45 -0800)
commitc747cf33baa6d3c161537393882b72d2cd50ed36
treeb8e6be7e243197d94a7b5405a0e7aa3447382ef1
parentbacb1c016d9187f08afc38bd3b16db3ae004dea6
t/t5570-git-daemon.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 <redacted>
Signed-off-by: Junio C Hamano <redacted>
t/t5570-git-daemon.sh
git clone https://git.99rst.org/PROJECT