#!/bin/sh # Invoke netscape, URL-escaping some special characters so that # Netscape will handle them properly. if [ -z "$DISPLAY" ] then exit 1 fi url=`/bin/echo -n "$1" | /bin/sed -e '/^\//s/%/%25/g' \ -e '/^\//s/#/%23/g' -e 's/,/%2c/g' -e 's/)/%29/g'` netscape -raise -remote "openURL($url,new-window)"