#!/bin/sh
if [ "$1" = -h ]; then
   echo "Opens a browser with Google and uses text selection as search pattern."
   exit
fi
${BROWSER:-mozilla} "http://www.google.com/search?q=`wmiplumb | sed s/\ /%20/g`"
