aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/session.sh
diff options
context:
space:
mode:
authorGravatar Ben Boeckel <MathStuf@gmail.com>2011-03-10 22:23:36 -0500
committerGravatar Ben Boeckel <MathStuf@gmail.com>2011-03-10 22:32:50 -0500
commitdcf3ffda8005c73c15f5142c61ee492f14af590a (patch)
treeb73cb35a08af35c81f0bf3e605a25bf378016f85 /examples/data/scripts/session.sh
parentf43741a91218936749afb3242a6e473f76387684 (diff)
Use print rather than printf
printf chokes on $(printf "%DD") which may very well come up in an encoded URL. Avoid that with the print alias.
Diffstat (limited to 'examples/data/scripts/session.sh')
-rwxr-xr-xexamples/data/scripts/session.sh22
1 files changed, 12 insertions, 10 deletions
diff --git a/examples/data/scripts/session.sh b/examples/data/scripts/session.sh
index e2f97fe..d03554b 100755
--- a/examples/data/scripts/session.sh
+++ b/examples/data/scripts/session.sh
@@ -26,6 +26,8 @@ if [ -z "$UZBL_UTIL_DIR" ]; then
fi
. "$UZBL_UTIL_DIR/uzbl-dir.sh"
+. "$UZBL_UTIL_DIR/uzbl-util.sh"
+
[ -d "$UZBL_DATA_DIR" ] || exit 1
UZBL="uzbl-browser -c \"$UZBL_CONFIG_FILE\"" # add custom flags and whatever here.
@@ -53,27 +55,27 @@ case $act in
"endinstance")
if [ -z "$UZBL_FIFO" ]; then
- printf "session manager: endinstance must be called from uzbl\n"
+ print "session manager: endinstance must be called from uzbl\n"
exit 1
fi
- [ "$UZBL_URI" != "(null)" ] && printf "$UZBL_URI\n" >> "$UZBL_SESSION_FILE"
- printf "exit\n" > "$UZBL_FIFO"
+ [ "$UZBL_URI" != "(null)" ] && print "$UZBL_URI\n" >> "$UZBL_SESSION_FILE"
+ print "exit\n" > "$UZBL_FIFO"
;;
"endsession")
for fifo in "$UZBL_FIFO_DIR/uzbl_fifo_*"; do
if [ "$fifo" != "$UZBL_FIFO" ]; then
- printf "spawn $scriptfile endinstance\n" > "$fifo"
+ print "spawn $scriptfile endinstance\n" > "$fifo"
fi
done
- [ -z "$UZBL_FIFO" ] || printf "spawn $scriptfile endinstance\n" > "$UZBL_FIFO"
+ [ -z "$UZBL_FIFO" ] || print "spawn $scriptfile endinstance\n" > "$UZBL_FIFO"
;;
*)
- printf "session manager: bad action\n"
- printf "Usage: $scriptfile [COMMAND] where commands are:\n"
- printf " launch - Restore a saved session or start a new one\n"
- printf " endinstance - Quit the current instance. Must be called from uzbl\n"
- printf " endsession - Quit the running session.\n"
+ print "session manager: bad action\n"
+ print "Usage: $scriptfile [COMMAND] where commands are:\n"
+ print " launch - Restore a saved session or start a new one\n"
+ print " endinstance - Quit the current instance. Must be called from uzbl\n"
+ print " endsession - Quit the running session.\n"
;;
esac