#!/bin/csh -f # cloudcomputing # ----------------------------------------------------------------------------- # C shell script to give Cloud Computing talk locally or remotely # ----------------------------------------------------------------------------- # Revision History: # $Log$ # ----------------------------------------------------------------------------- # Default to "any" instead of "o" so debugwebsite chooses the default. set browser = "any" if ($#argv > 0) then set browser = $1:q shift endif set local_url = ~/fred/WebSite/bristle/Talks/cloudcomputing/current/index.htm set remote_url = http://bristle.com/Talks/CloudComputing/current/ set url = $local_url if ("$1" == "remote") then set url = $remote_url:q shift else if ("$1" == "local") then set url = $local_url:q shift endif set echo debugwebsite $browser:q $url:q