#!/bin/shSo now, "ow google hats" opens a browser window in the background with a google search for the word hats.
# sends a string to be parsed by the Omniweb browser
if [ -z "$1" ]
then
echo "usage: ow URL ..."
exit 65
fi
until [ -z "$1" ]
do
osascript -l AppleScript -e "Tell application \"Omniweb\" to getURL \"$1\""
shift
done &
exit 0
[Editor's note: To make the script executable, make sure you issue a "chmod 755 ow" and then "rehash" (or close and open the terminal). Enter the text using vi or pico or any other text editor that will not add Mac line breaks.]

