aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Ben Boeckel <MathStuf@gmail.com>2011-03-10 20:49:56 -0500
committerGravatar Ben Boeckel <MathStuf@gmail.com>2011-03-10 22:32:30 -0500
commit7027c47d10d4f6595f8b926516fcbc90eb18d574 (patch)
treedd0031da89b3e7dffa1dac2cea519cdc161532ae
parent03e2f59ec0959ba4dec30a903ac060d74e5fdac5 (diff)
Use cut over awk where possible
-rwxr-xr-xexamples/data/scripts/load_url_from_bookmarks.sh2
-rwxr-xr-xexamples/data/scripts/load_url_from_history.sh2
2 files changed, 2 insertions, 2 deletions
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