Last active
August 29, 2015 14:24
-
-
Save knpwrs/e6bde609123a748a5b94 to your computer and use it in GitHub Desktop.
Sudowoodo
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 sh | |
# From http://redd.it/3cszgd | |
if [ $EUID != 0 ]; then | |
echo "It's a weird tree." | |
else | |
echo ' _ __' | |
echo ' / `\ (~._ ./ )' | |
echo ' \__/ __`-_\__/ ./' | |
echo ' _ \ \/ \ \ |_ __' | |
echo ' ( ) \__/ -^ \ / \' | |
echo ' \_/ " \ | o o |.. / __' | |
echo " \\. --' ==== / || / \\ " | |
echo ' \ . . |---__.\__/' | |
echo ' / : / | |' | |
echo ' / : / \_/' | |
echo ' --/ :: (' | |
echo ' ( | ( (____' | |
echo ' .-- .. ----**.____)' | |
echo ' \___/ ' | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment