Skip to content

Instantly share code, notes, and snippets.

@webframp
Created June 28, 2013 21:30
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save webframp/5888299 to your computer and use it in GitHub Desktop.
Save webframp/5888299 to your computer and use it in GitHub Desktop.
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
}
@ralph-tice
Copy link

in case you're a doof like me, line #32 doesn't belong if you want to paste into a .bash_profile :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment