#!/bin/csh -f # favicon # ------------------------------------------------------------------------- # Shell script to view the favicon of a web site # ------------------------------------------------------------------------- # Revision History: # $Log$ # ------------------------------------------------------------------------- set browser = "open" # If $1 is a script in the browsers folder, use it as the browser. if ($#argv > 0 && -x "$0:h/browsers/$1") then set browser = $1:q shift endif (set echo; $browser "http://www.google.com/s2/favicons?domain=$1")