Skip to content

Instantly share code, notes, and snippets.

@aaronpk
Last active December 20, 2015 10:39
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaronpk/6116966 to your computer and use it in GitHub Desktop.
Save aaronpk/6116966 to your computer and use it in GitHub Desktop.
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
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