Skip to content

Instantly share code, notes, and snippets.

@Matts966
Created November 1, 2019 05:47
Show Gist options
  • Save Matts966/1936e49a7df8fbb96a23326f188d8231 to your computer and use it in GitHub Desktop.
Save Matts966/1936e49a7df8fbb96a23326f188d8231 to your computer and use it in GitHub Desktop.
Open all tabs in Safari for Chrome
#!/bin/bash
osascript <<EOF | tr ', ' '\n' | while read line; do open -a Google\ Chrome $line; done
tell application "Safari"
activate
windows's tab's URL
end tell
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment