Created
November 7, 2013 17:17
-
-
Save andregumieri/7358269 to your computer and use it in GitHub Desktop.
Little bash script to Mac that kills and reopen iTunes. Sometimes iTunes has some problems to stream to Apple TV that is resolved by killing it and opening it again.
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 | |
| killall iTunes | |
| osascript -e "tell application \"iTunes\" to open" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment