Created
November 8, 2016 03:53
-
-
Save gaga5lala/a0c150b1ae1153dd81f9851a415785aa to your computer and use it in GitHub Desktop.
Check whether sticker is ready for sale.
This file contains hidden or 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
#!/bin/bash | |
result=$(curl -i https://store.line.me/stickershop/product/1343605 2>/dev/null | head -n 1 | cut -d$' ' -f2) | |
while [ $result -ne "200" ] | |
do | |
echo $result | |
sleep 60 | |
done | |
echo "#######" | |
echo "ready!!" | |
echo "#######" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment