Replace `` by $() syntax in shell scripts.

$() is easier to nest and POSIX, which we require in other places.
This commit is contained in:
Diego Biurrun
2011-04-19 00:16:24 +02:00
parent ff3be572ef
commit 6252040e77
2 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
sed '/^+[^+]/!s/ /TaBBaT/g' |\
expand -t `seq -s , 9 8 200` |\
expand -t $(seq -s , 9 8 200) |\
sed 's/TaBBaT/ /g' |\
sed '/^+[^+]/s/ * $//' |\
tr -d '\015' |\