Created
November 1, 2019 05:47
-
-
Save Matts966/1936e49a7df8fbb96a23326f188d8231 to your computer and use it in GitHub Desktop.
Open all tabs in Safari for Chrome
This file contains hidden or 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
#!/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