Skip to content

Instantly share code, notes, and snippets.

@kolber
Created August 3, 2012 00:54
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kolber/3242816 to your computer and use it in GitHub Desktop.
Save kolber/3242816 to your computer and use it in GitHub Desktop.
Shell command to refresh Safari
# Shell command to refresh Safari
# 1. Hook this into a shortcut in your favourite text editor
# 2. Profit
osascript -e 'tell application "Safari"' -e 'tell its first document' -e 'set its URL to (get its URL)' -e 'end tell' -e 'activate' -e 'end tell'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment