1. #!/bin/bash
  2.  
  3. if [[ `curl -s "https://play.google.com/store/devices/details?id=nexus_4_16gb" | grep -i "coming soon"` ]]
  4. then
  5.     echo "Waiting";
  6. elif [[ `curl -s "https://play.google.com/store/devices/details?id=nexus_4_16gb" | grep -i "sold out"` ]]
  7. then
  8.    echo "Waiting";
  9. else
  10.     echo "Check the site: https://play.google.com/store/devices/details?id=nexus_4_16gb" | mail -s "Nexus" "##YOUR_EMAIL_ADDRESS_HERE##";
  11. fi