From 32f6f8360684c0b583e613cf5727f0c102438bd2 Mon Sep 17 00:00:00 2001 From: Brendan Taylor Date: Sun, 13 Mar 2011 21:49:27 -0600 Subject: sh scripts: replace print with echo/printf we can safely use echo in many of the situations where 'print' is being used, and we can use printf directly in other places. --- examples/data/scripts/go_input.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'examples/data/scripts/go_input.sh') diff --git a/examples/data/scripts/go_input.sh b/examples/data/scripts/go_input.sh index ad236d1..9797788 100755 --- a/examples/data/scripts/go_input.sh +++ b/examples/data/scripts/go_input.sh @@ -1,9 +1,7 @@ #!/bin/sh -. "$UZBL_UTIL_DIR/uzbl-util.sh" - -case "$( print "script @scripts_dir/go_input.js\n" | socat - "unix-connect:$UZBL_SOCKET" )" in +case "$( echo "script @scripts_dir/go_input.js" | socat - "unix-connect:$UZBL_SOCKET" )" in *XXXEMIT_FORM_ACTIVEXXX*) - print "event FORM_ACTIVE\n" > "$UZBL_FIFO" + echo "event FORM_ACTIVE" > "$UZBL_FIFO" ;; esac -- cgit v1.2.3