From 14a680bb7c682b9e1f364c5a3018a460f5dfd890 Mon Sep 17 00:00:00 2001 From: Erkin Batu Altunbaş Date: Sun, 26 Feb 2012 18:03:50 +0100 Subject: ponythink --- ponythink | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 ponythink (limited to 'ponythink') 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 $* -- cgit