Created
September 9, 2016 07:14
-
-
Save codesoda/fa5dc8768e4019bee0b32e71b4d3f19d to your computer and use it in GitHub Desktop.
Check apple store to see if iphone is available yet
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
main() { | |
while [[ true ]]; do | |
local request="$(curl -s 'http://www.apple.com/us/shop/goto/iphone_7/select' | grep 'be back soon')" | |
if [[ ! $request ]]; then | |
say 'Yep, time to buy' | |
break | |
fi | |
echo "Not luck yet :(" | |
sleep 5 | |
done | |
} | |
main "$@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment