Last active
August 29, 2016 19:53
-
-
Save ikkentim/9e893f38d4ca2853d5ac5588171c524b to your computer and use it in GitHub Desktop.
Get sandwiches https://xkcd.com/149/
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
me: | |
@me=`whoami` ; \ | |
if test $$me != "root" ; \ | |
then \ | |
echo 'What? Make it yourself.'; \ | |
exit 1; \ | |
fi | |
a: | |
@printf '' | |
sandwich: | |
@echo 'Okay';\ | |
echo '';\ | |
echo '\ | |
_.---._\n\ | |
_.-~ ~-._\n\ | |
_.-~ ~-._\n\ | |
_.-~ ~---._\n\ | |
_.-~ ~\\\n\ | |
.-~ _.;\n\ | |
:-._ _.-~ ./\n\ | |
`-._~-._ _..__.-~ _.-~\n\ | |
/ ~-._~-._ / .__..--~----._\n\ | |
\_____(_;-._\. _.-~_/ ~).. . \\\n\ | |
/(_____ \`--...--~_.-~______..-+_______)\n\ | |
.(_________/`--...--~/ _/... /\\\n\ | |
/-._ \_ (___./_..-~__.....__..-~./\n\ | |
`-._~-._ ~\--------~ .-~_..__.-~ _.-~\n\ | |
~-._~-._ ~---------` / .__..--~\n\ | |
~-._\. _.-~_/\n\ | |
\`--...--~_.-~\n\ | |
`--...--~'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment