Skip to content

Instantly share code, notes, and snippets.

@jtimberman
Forked from webframp/functions.sh
Created June 29, 2013 06:14
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jtimberman/5890075 to your computer and use it in GitHub Desktop.
Save jtimberman/5890075 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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment