Last active
October 15, 2016 03:53
-
-
Save shanecelis/483f710dcb76c936e1a23d01295968ca to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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