Last active
August 29, 2015 14:10
-
-
Save mammothbane/586bb8f77abbcb3faf92 to your computer and use it in GitHub Desktop.
sudo woodo
This file contains 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
#include <unistd.h> | |
#include <stdio.h> | |
int main(int argc, char **argv) { | |
uid_t uid = geteuid(); | |
if (uid) { | |
printf("It's a weird tree.\n"); | |
} else { | |
printf(" _ __\n"); | |
printf(" / `\\ (~._ ./ )\n"); | |
printf(" \\__/ __`-_\\__/ ./\n"); | |
printf(" _ \\ \\/ \\ \\ |_ __\n"); | |
printf(" ( ) \\__/ -^ \\ / \\\n"); | |
printf(" \\_/ \" \\ | o o |.. / __\n"); | |
printf(" \\\\. --' ==== / || / \\\n"); | |
printf(" \\ . . |---__.\\__/\n"); | |
printf(" / : / | |\n"); | |
printf(" / : / \\_/\n"); | |
printf(" --/ :: (\n"); | |
printf(" ( | ( (____\n"); | |
printf(" .-- .. ----**.____)\n"); | |
printf(" \\___/ \n"); | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment