Skip to content

Instantly share code, notes, and snippets.

@Lily418
Last active June 20, 2019 00:13
Show Gist options
  • Save Lily418/b5eb8cedfe80b5a6b3a4ad6b542ad487 to your computer and use it in GitHub Desktop.
Save Lily418/b5eb8cedfe80b5a6b3a4ad6b542ad487 to your computer and use it in GitHub Desktop.
Check the status of your gut health
#!/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