#!/bin/csh -f # hhlglossary # ----------------------------------------------------------------------------- # C shell script to access the glossary on the HHL Wiki in specified browser # ----------------------------------------------------------------------------- # Revision History: # $Log$ # ----------------------------------------------------------------------------- set browser = "open" set topic = "" if ($#argv > 0) then if ("$1" == "open" || "$1" == "ff" || "$1" == "chr" || "$1" == "chrome" || "$1" == "safari" ) then set browser = $1:q shift endif endif echo $browser https://helphopelive.atlassian.net/wiki/display/HHLWEB/Glossary $browser https://helphopelive.atlassian.net/wiki/display/HHLWEB/Glossary