aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/data/scripts/load_url_from_history.sh
diff options
context:
space:
mode:
authorGravatar Ben Boeckel <MathStuf@gmail.com>2011-03-10 20:48:54 -0500
committerGravatar Ben Boeckel <MathStuf@gmail.com>2011-03-10 22:32:30 -0500
commit03e2f59ec0959ba4dec30a903ac060d74e5fdac5 (patch)
treef3bec45fd98ac450f0988a8ef79cc26bde9213fd /examples/data/scripts/load_url_from_history.sh
parent6cb7be2b071f5e540c33ecc5e21ab22c81434834 (diff)
Add padding inside of braces
Diffstat (limited to 'examples/data/scripts/load_url_from_history.sh')
-rwxr-xr-xexamples/data/scripts/load_url_from_history.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/data/scripts/load_url_from_history.sh b/examples/data/scripts/load_url_from_history.sh
index 9cca356..5388680 100755
--- a/examples/data/scripts/load_url_from_history.sh
+++ b/examples/data/scripts/load_url_from_history.sh
@@ -9,14 +9,13 @@ DMENU_OPTIONS="xmms vertical resize"
[ -r "$UZBL_HISTORY_FILE" ] || exit 1
# choose from all entries, sorted and uniqued
-# goto=$(awk '{print $3}' $history_file | sort -u | dmenu -i)
if [ -z "$DMENU_HAS_VERTICAL" ]; then
- current="$(tail -n 1 "$UZBL_HISTORY_FILE" | awk '{print $3}')"
- goto="$( (echo "$current"; awk '{print $3}' "$UZBL_HISTORY_FILE" | grep -v "^$current\$" | sort -u) | $DMENU)"
+ current="$( tail -n 1 "$UZBL_HISTORY_FILE" | awk '{ print $3 }' )"
+ goto="$( ( echo "$current"; awk '{ print $3 }' "$UZBL_HISTORY_FILE" | grep -v "^$current\$" | sort -u ) | $DMENU )"
else
# choose an item in reverse order, showing also the date and page titles
# pick the last field from the first 3 fields. this way you can pick a url (prefixed with date & time) or type just a new url.
- goto="$(tac "$UZBL_HISTORY_FILE" | $DMENU | cut -d ' ' -f -3 | awk '{print $NF}')"
+ goto="$( tac "$UZBL_HISTORY_FILE" | $DMENU | cut -d ' ' -f -3 | awk '{ print $NF }' )"
fi
[ -n "$goto" ] && echo "uri $goto" > "$UZBL_FIFO"