-
-
Save fefz/841b69d1af69320ea03fd52eb2121c0e to your computer and use it in GitHub Desktop.
access google voice
This file contains 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 | |
#replace `curl link` with your curl link | |
test(){ | |
res=$(`curl link` -s) | |
if [[ ${res:0-9:5} -eq "again" ]]; then | |
echo ${res:0-9:5} | |
sleep 3 | |
test | |
elif [[ ! ${res:0-9:5} -eq "again" ]]; then | |
echo "exit" | |
fi | |
} | |
test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment