Last active
January 14, 2016 21:35
-
-
Save greggles/f6110e6a593109a7227c to your computer and use it in GitHub Desktop.
Mac: Check a ticket sales website every 30 seconds and when tickets go on sale, play a sound and open chrome to buy the tickets
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
# This url happens to be for a Tedeschi Trucks Band concert. | |
# You can go to any concert you want. | |
# But you *should* go to a Tedeschi Trucks Band concert at least once in your life. | |
watch -n 30 "curl -s https://events.applauze.com/events/3083244 | grep -i 'Coming Soon' || open -a Google\ Chrome https://events.applauze.com/events/3083244 ; say 'tickets are for sale' " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment