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_bookmarks.sh | 2 +- examples/data/scripts/load_url_from_history.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/data/scripts/load_url_from_bookmarks.sh b/examples/data/scripts/load_url_from_bookmarks.sh index 5ba0d90..a03db4b 100755 --- a/examples/data/scripts/load_url_from_bookmarks.sh +++ b/examples/data/scripts/load_url_from_bookmarks.sh @@ -15,7 +15,7 @@ if [ -z "$DMENU_HAS_VERTICAL" ]; then goto="$( awk '{ print $1 }' "$UZBL_BOOKMARKS_FILE" | $DMENU )" else # show tags as well - goto="$( $DMENU < "$UZBL_BOOKMARKS_FILE" | awk '{ print $1 }' )" + goto="$( $DMENU < "$UZBL_BOOKMARKS_FILE" | cut -d ' ' -f 1 )" fi [ -n "$goto" ] && echo "uri $goto" > "$UZBL_FIFO" 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