aboutsummaryrefslogtreecommitdiff
path: root/ponythink
diff options
context:
space:
mode:
Diffstat (limited to 'ponythink')
-rwxr-xr-xponythink27
1 files changed, 27 insertions, 0 deletions
diff --git a/ponythink b/ponythink
new file mode 100755
index 0000000..2136187
--- /dev/null
+++ b/ponythink
@@ -0,0 +1,27 @@
+#!/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 $*