Skip to content

Instantly share code, notes, and snippets.

@wuputah
Last active December 17, 2015 17:39
Show Gist options
  • Select an option

  • Save wuputah/5647202 to your computer and use it in GitHub Desktop.

Select an option

Save wuputah/5647202 to your computer and use it in GitHub Desktop.
tell application "Google Chrome"
set aWin to make new window with properties {mode:"incognito"}
tell aWin
make new tab with properties {URL:"http://www.wuputah.com"}
close tab 1
end tell
activate
end tell
#!/bin/sh
osascript - <<EOF
tell application "Google Chrome"
set aWin to make new window with properties {mode:"incognito"}
tell aWin
make new tab with properties {URL:"$1"}
close tab 1
end tell
activate
end tell
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment