#!/bin/csh -f # qfgithub # ----------------------------------------------------------------------------- # C shell script to go to GitHub site for Thunderbird add-on QuickFolders # ----------------------------------------------------------------------------- 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 # Go to the issues list or the specified ticket (set echo; $browser https://github.com/RealRaven2000/quickfolders/issues/$1)