Se você deseja obter um Nexus 4 e está esperando que a Play Store receba um novo estoque, pode verificar automaticamente usando este script bash:
#!/bin/bash
while true
do
if [ `curl "https://play.google.com/store/devices/details?id=nexus_4_16gb" | grep -io "Sold out" | wc -l` -lt 1 ]
then
echo "In stock"
# You can send yourself an email here
exit 1
fi
echo "Not in stock :("
sleep 900
done