Created
July 30, 2013 21:07
-
-
Save aaronpk/6116964 to your computer and use it in GitHub Desktop.
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
| me: | |
| ifeq ($(USER), root) | |
| @echo "\c" | |
| else | |
| @echo "make \c" | |
| endif | |
| a: | |
| ifeq ($(USER), root) | |
| @echo "\c" | |
| else | |
| @echo "it \c" | |
| endif | |
| sandwich: | |
| ifeq ($(USER), root) | |
| @echo " ____" | |
| @echo " .----------' '-." | |
| @echo " / . ' . \\" | |
| @echo " / ' . /|" | |
| @echo " / . \ /" | |
| @echo " / ' . . . || |" | |
| @echo " /.___________ ' / //" | |
| @echo " |._ '------'| /|" | |
| @echo " '.............______.-' /" | |
| @echo " |-. | /" | |
| @echo " \`\"\"\"\"\"\"\"\"\"\"\"\"\"-.....-'" | |
| else | |
| @echo "yourself" | |
| endif |
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
| aaronpk@pk ~: make me a sandwich | |
| make it yourself | |
| aaronpk@pk ~: sudo make me a sandwich | |
| ____ | |
| .----------' '-. | |
| / . ' . \ | |
| / ' . /| | |
| / . \ / | |
| / ' . . . || | | |
| /.___________ ' / // | |
| |._ '------'| /| | |
| '.............______.-' / | |
| |-. | / | |
| `"""""""""""""-.....-' | |
| aaronpk@pk ~: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment