Replace backticks in shell scripts with S()

This commit is contained in:
Andrew Wood
2023-07-22 20:20:15 +01:00
parent 101294195b
commit a24342a072
27 changed files with 107 additions and 107 deletions
+3 -3
View File
@@ -12,8 +12,8 @@ dd if=/dev/zero bs=500 count=1 2>/dev/null \
# The number of output lines should be >8 and <13, and the final byte count
# should be 500.
#
test `wc -l < $TMP1` -gt 8
test `wc -l < $TMP1` -lt 13
test `sed -n '$p' < $TMP1` -eq 500
test $(wc -l < $TMP1) -gt 8
test $(wc -l < $TMP1) -lt 13
test $(sed -n '$p' < $TMP1) -eq 500
# EOF