Skip to content

Commit 57eb1be

Browse files
devzero2000gitster
authored andcommitted
contrib/thunderbird-patch-inline/appp.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>
1 parent bc32bac commit 57eb1be

File tree

1 file changed

+2
-2
lines changed
  • contrib/thunderbird-patch-inline

1 file changed

+2
-2
lines changed

contrib/thunderbird-patch-inline/appp.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ BODY=$(sed -e "1,/${SEP}/d" $1)
3131
CMT_MSG=$(sed -e '1,/^$/d' -e '/^---$/,$d' "${PATCH}")
3232
DIFF=$(sed -e '1,/^---$/d' "${PATCH}")
3333

34-
CCS=`echo -e "$CMT_MSG\n$HEADERS" | sed -n -e 's/^Cc: \(.*\)$/\1,/gp' \
35-
-e 's/^Signed-off-by: \(.*\)/\1,/gp'`
34+
CCS=$(echo -e "$CMT_MSG\n$HEADERS" | sed -n -e 's/^Cc: \(.*\)$/\1,/gp' \
35+
-e 's/^Signed-off-by: \(.*\)/\1,/gp')
3636

3737
echo "$SUBJECT" > $1
3838
echo "Cc: $CCS" >> $1

0 commit comments

Comments
 (0)