From 7027c47d10d4f6595f8b926516fcbc90eb18d574 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 10 Mar 2011 20:49:56 -0500 Subject: Use cut over awk where possible --- examples/data/scripts/load_url_from_history.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/data/scripts/load_url_from_history.sh') diff --git a/examples/data/scripts/load_url_from_history.sh b/examples/data/scripts/load_url_from_history.sh index 5388680..24bfdce 100755 --- a/examples/data/scripts/load_url_from_history.sh +++ b/examples/data/scripts/load_url_from_history.sh @@ -10,7 +10,7 @@ DMENU_OPTIONS="xmms vertical resize" # choose from all entries, sorted and uniqued if [ -z "$DMENU_HAS_VERTICAL" ]; then - current="$( tail -n 1 "$UZBL_HISTORY_FILE" | awk '{ print $3 }' )" + current="$( tail -n 1 "$UZBL_HISTORY_FILE" | cut -d ' ' -f 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 -- cgit v1.2.3