Last active
June 20, 2019 00:13
-
-
Save Lily418/b5eb8cedfe80b5a6b3a4ad6b542ad487 to your computer and use it in GitHub Desktop.
Check the status of your gut health
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
#!/usr/bin/env bash | |
if [ "$1" = "status" ]; then | |
printf "Your gut seems to be healthy" | |
elif [ "$1" = "reset" ]; then | |
printf "Cleaning out your gut..." | |
sleep 1 | |
printf "Please wait..." | |
sleep 1 | |
printf "Please wait..." | |
sleep 1 | |
printf "Your gut has been reset" | |
elif [ "$1" = "log" ]; then | |
printf "Your gut is currently processing logs" | |
else | |
printf "I do not understand that question, use 'gut status' to ask me about your gut health" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment