Skip to content

Instantly share code, notes, and snippets.

@cmittendorf
Created June 20, 2014 07:10
Show Gist options
  • Save cmittendorf/40e68cba8bcf5ff12ff5 to your computer and use it in GitHub Desktop.
Save cmittendorf/40e68cba8bcf5ff12ff5 to your computer and use it in GitHub Desktop.
Get the URL of the current web page from Safari
#!/usr/bin/env bash
URL=$(osascript << EOF
tell application "Safari"
tell its first document
URL
end tell
end tell
EOF)
echo -n ${URL%\\n}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment