Created
June 28, 2013 21:30
-
-
Save webframp/5888299 to your computer and use it in GitHub Desktop.
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
function table() { | |
case "$1" in | |
flip) | |
echo "(╯°□°)╯︵ ┻━┻ " | |
;; | |
set) | |
echo "┬─┬ ノ( ゜-゜ノ)" | |
;; | |
man) | |
echo "(╯°Д°)╯︵ /(.□ . \)" | |
;; | |
bear) | |
echo "ʕノ•ᴥ•ʔノ ︵ ┻━┻" | |
;; | |
jedi) | |
echo "(._.) ~ ︵ ┻━┻" | |
;; | |
pudgy) | |
echo "(ノ ゜Д゜)ノ ︵ ┻━┻" | |
;; | |
battle) | |
echo "(╯°□°)╯︵ ┻━┻ ︵ ╯(°□° ╯)" | |
;; | |
rage) | |
echo "(ノಥ益ಥ)ノ ┻━┻" | |
;; | |
herc) | |
echo "(/ .□.)\ ︵╰(゜Д゜)╯︵ /(.□. \)" | |
;; | |
*) | |
echo "Unknown table" | |
exit 1 | |
;; | |
esac | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
in case you're a doof like me, line #32 doesn't belong if you want to paste into a .bash_profile :)