Skip to content

Instantly share code, notes, and snippets.

@stigkj
Forked from jhickner/reload_chrome.sh
Created April 15, 2013 09:45
Show Gist options
  • Save stigkj/5387032 to your computer and use it in GitHub Desktop.
Save stigkj/5387032 to your computer and use it in GitHub Desktop.
#!/bin/sh
exec <"$0" || exit; read v; read v; exec /usr/bin/osascript - "$@"; exit
-- the above is some shell trickery that lets us write the rest of
-- the file in plain applescript
tell application "Google Chrome"
activate
tell application "System Events"
tell process "Google Chrome"
keystroke "r" using {command down, shift down}
end tell
end tell
end tell
tell application "iTerm" to activate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment