#!/bin/sh
# 
# with no arguments:  start lynx (text-mode browser) with
#   google.com as initial page
# with one argument:  start lynx with results of google search
#   for argument
# examples:
#   google
#   google this
#   google "this that"
#   google "\"this that\"" (to use quoted "this that" as search string)
#
if [ -z "$1" ]
then
	lynx http://www.google.com
else
	lynx 'http://www.google.com/search?client=googlet&q='"$1" 
fi
