Skip to content

Instantly share code, notes, and snippets.

@uchida
Created April 30, 2011 21:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uchida/950029 to your computer and use it in GitHub Desktop.
Save uchida/950029 to your computer and use it in GitHub Desktop.
open url in Safari with new Tab
#!/bin/sh
osascript -e "tell application \"Safari\"
tell window 1
set current tab to (make new tab)
set currenttab to open location \"$@\"
end tell
end tell"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment