Created
December 14, 2019 18:41
-
-
Save truemagic-coder/f671a5b1356d62158f30f6253935d866 to your computer and use it in GitHub Desktop.
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/sh | |
echo "how many seconds?" | |
read seconds | |
while [ $seconds -gt 0 ] | |
do | |
curl localhost:8080/broadcast/$seconds | |
seconds=`expr $seconds - 1` | |
done |
Author
truemagic-coder
commented
Dec 14, 2019
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment