#!/bin/csh -f # Note: Can't do the following since it tries to open a new instance of # Chrome which reports: # [6459:2307:0723/174624:ERROR:process_singleton_mac.cc(104)] # Unable to obtain profile lock. #"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" $*:q & # One downside is that this opens my home page as well as the specified # page, in 2 tabs. Any better way? Perhaps a command line option for # Chrome to tell it to not open the home page? open -a '/Applications/Google Chrome.app' $*:q