Created
December 15, 2016 14:21
-
-
Save mrfrostikcz/5454951f561bf8ed66834a71fbc968e9 to your computer and use it in GitHub Desktop.
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 | |
echo 'Jdi na pivo!' | |
for (( c=1; c<=3600; c++)) | |
do | |
time=$(( 3600 - c )) | |
echo "Pij, mas jeste $time sekund casu." | |
sleep 1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment