Created
July 17, 2012 23:25
-
-
Save aaronjgreenberg/3132852 to your computer and use it in GitHub Desktop.
Making Sandwiches
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
cd over to the directory with that Makefile, and run: | |
`make me a sandwich` | |
Bonus points if you create a witty alias for `sudo`, a la | |
alias butler,="sudo" | |
`butler, make me a sandwich` |
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: | |
@echo " _.---._" | |
@echo " _.-~ ~-._" | |
@echo " _.-~ ~-._" | |
@echo " _.-~ ~---._" | |
@echo " _.-~ ~\\" | |
@echo " .-~ _.;" | |
a: | |
@echo " :-._ _.-~ ./" | |
@echo " '-._~-._ _..__.-~ _.-~" | |
@echo " / ~-._~-._ / .__..--~----._" | |
@echo " \\_____(_;-._\\. _.-~_/ ~).. . \\" | |
@echo " /(_____ \\'--...--~_.-~______..-+_______)" | |
@echo " .(_________/'--...--~/ _/ /\\" | |
sandwich: | |
@echo " /-._ \\_ (___./_..-~__.....__..-~./" | |
@echo " '-._~-._ ~\\--------~ .-~_..__.-~ _.-~" | |
@echo " ~-._~-._ ~---------' / .__..--~" | |
@echo " ~-._\\. _.-~_/" | |
@echo " \\'--...--~_.-~" | |
@echo " '--...--~" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment