Last active
June 22, 2016 13:41
-
-
Save matchilling/8c68e9f4092d2fbe1caa17315de1b02a to your computer and use it in GitHub Desktop.
Get the message of the day
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
#!/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