summaryrefslogtreecommitdiff
path: root/tools/clean-diff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-04-19 00:16:24 +0200
committerDiego Biurrun <diego@biurrun.de>2011-04-23 17:45:05 +0200
commit6252040e773c30efa21c743124d5e813320a0ec2 (patch)
tree390d6ccbb10151149d5dd564f1cd200fdd825e2e /tools/clean-diff
parentff3be572efde575c2b5ee621a84920ac9a5b9b8f (diff)
Replace `` by $() syntax in shell scripts.
$() is easier to nest and POSIX, which we require in other places.
Diffstat (limited to 'tools/clean-diff')
-rwxr-xr-xtools/clean-diff2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/clean-diff b/tools/clean-diff
index 98e26a79f9..4600702b10 100755
--- a/tools/clean-diff
+++ b/tools/clean-diff
@@ -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' |\