Skip to content

Instantly share code, notes, and snippets.

@matchilling
Last active June 22, 2016 13:41
Show Gist options
  • Save matchilling/8c68e9f4092d2fbe1caa17315de1b02a to your computer and use it in GitHub Desktop.
Save matchilling/8c68e9f4092d2fbe1caa17315de1b02a to your computer and use it in GitHub Desktop.
Get the message of the day
#!/bin/bash
# ------------------------------------------------------------------------------
# Get the message of the day :)
# ------------------------------------------------------------------------------
motd=`curl --silent -H "Accept: text/plain" https://api.chucknorris.io/jokes/random 2>&1 /dev/null`
echo -e "\n\n$motd\n\n\033[0;31m¯\_(ツ)_/¯ Have a good day dude ...\033[0m\n\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment