Skip to content

Instantly share code, notes, and snippets.

@roustem
Created March 24, 2011 18:02
Show Gist options
  • Save roustem/885539 to your computer and use it in GitHub Desktop.
Save roustem/885539 to your computer and use it in GitHub Desktop.
Check for iPad 2 availability in Canadian Apple Store
#! /bin/bash
while [ 1 ]
do
curl -s 'http://store.apple.com/ca/browse/home/shop_ipad/family/ipad/select?mco=MjE2MjYyNzA' | grep -i "Currently unavailable" > /dev/null
if [ $? == 0 ]; then
echo "`date` — not available"
else
echo "`date` — available"
say "iPad 2 Is Available! iPad 2 Is Available! iPad 2 Is Available! iPad 2 Is Available! iPad 2 Is Available! iPad 2 Is Available! iPad 2 Is Available! iPad 2 Is Available! iPad 2 Is Available! iPad 2 Is Available! iPad 2 Is Available! iPad 2 Is Available!"
break
fi
sleep 60
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment