#!/bin/csh -f # tbbugs # ----------------------------------------------------------------------------- # Shell script to view Thunderbird wiki # ----------------------------------------------------------------------------- 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 if ($#argv > 0) then echo "No args supported yet." else (set echo; $browser "https://wiki.mozilla.org/Thunderbird") endif