Skip to content

Instantly share code, notes, and snippets.

@shanecelis
Last active October 15, 2016 03:53
Show Gist options
  • Save shanecelis/483f710dcb76c936e1a23d01295968ca to your computer and use it in GitHub Desktop.
Save shanecelis/483f710dcb76c936e1a23d01295968ca to your computer and use it in GitHub Desktop.
#!/usr/bin/osascript
# safari-reload.sh
#
# Reload the current page in Safari.
#
# https://discussions.apple.com/thread/5747713?tstart=0
tell application "Safari"
set docUrl to URL of document 1
set URL of document 1 to docUrl
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment