aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorGravatar Ben Boeckel <MathStuf@gmail.com>2011-04-12 23:58:48 -0400
committerGravatar Ben Boeckel <MathStuf@gmail.com>2011-04-12 23:58:48 -0400
commitd5b71e85e1b13c79a6de488254406ec690c9efe7 (patch)
tree97044cb4b14cacc28e630f8898382b867a14b8fd /examples
parent1a7bfc9471fcc46135b1099629675f085af7407a (diff)
Escape all @ characters
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/data/scripts/formfiller.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/data/scripts/formfiller.sh b/examples/data/scripts/formfiller.sh
index b69ab60..c1171a0 100755
--- a/examples/data/scripts/formfiller.sh
+++ b/examples/data/scripts/formfiller.sh
@@ -116,7 +116,7 @@ Load ()
ParseProfile $option < "$file" \
| ParseFields \
- | sed 's/@/\\@/' \
+ | sed 's/@/\\@/g' \
> "$UZBL_FIFO"
}
@@ -132,7 +132,7 @@ Once ()
test -e "$tmpfile" &&
ParseFields < "$tmpfile" \
- | sed 's/@/\\@/' \
+ | sed 's/@/\\@/g' \
> "$UZBL_FIFO"
}