Last active
September 12, 2017 03:54
-
-
Save Sino/da4ad8cc2f3346f66fc2c690e9462209 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
X=0 | |
while [ $X -lt 20 ]; do | |
echo "WOO I'M IN A DOCKER CONTAINER" | |
sleep .5 | |
echo "THIS COUNTS AS MY BONUS" | |
sleep .5 | |
echo "////////////////////////////////////////" | |
sleep .5 | |
echo "IF YOU HAVE A PROBLEM WITH IT, I'LL FIGHT YOU TO THE DEATH " | |
sleep .5 | |
echo "THANKS FOR THE CORRECTION " | |
sleep .5 | |
echo " \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ " | |
sleep .5 | |
echo " GOODBYE :) " | |
sleep 2 | |
echo " WHY ARE YOU STILL HERE? " | |
sleep 3 | |
echo " //////////////////////////////////////////" | |
echo " \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ " | |
X=$(( $X + 1 )) | |
echo "$X" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment