Advertisement
Guest User

nexus

a guest
Nov 23rd, 2012
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.42 KB | None | 0 0
  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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement