Last active
January 9, 2019 21:47
-
-
Save lilithebowman/9e22cd1d5fdcb81dd0e9d642c4b3a204 to your computer and use it in GitHub Desktop.
Celebrate how tubby your 'sona is right now
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
let gain=$RANDOM | |
let gain=$gain/1000 | |
echo "Your eating habits have gained you $gain kg." | |
if(( $gain >= 25 )); then | |
echo ' /)___/) ' | |
echo ' ( . _. ) ' | |
echo ' (( x )) ' | |
echo 'CC("),__,(") ' | |
fi | |
if(( $gain < 25 )); then | |
echo ' /)_/) ' | |
echo ' ( . _.) ' | |
echo ' (( . ))' | |
echo 'CC(")__(") ' | |
fi | |
if(( $gain < 100 )); then | |
echo "You naughty raccoon!" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment