diff options
Diffstat (limited to 'ponythink')
-rwxr-xr-x | ponythink | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/ponythink b/ponythink deleted file mode 100755 index 2136187..0000000 --- a/ponythink +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env bash -export PERL_UNICODE=S - -ponydir=$PWD/ponies - -function ponyf() { - if [[ -f ${ponydir}/${1}.cow ]] ; then - cowthink -f "${ponydir}/${1}.cow" $@ - else - ponyr $@ - fi -} -function ponyr() { - cowthink -f $(ls ${ponydir}/*.cow | sort -R | head -n1) $@ -} - -while getopts f:hv OPT -do - case ${OPT} in - v) echo "v0.01" ; exit;; - h) echo "helpherpderp" ; exit;; - f) ponyf $* ; exit;; - \?) echo "DERP"; exit;; - *) ponyr $* ; exit;; - esac -done -ponyr $* |