From 378e39d90c0f8a70eebf1edb18a9ba525a776572 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Sun, 26 Feb 2012 18:28:03 +0100 Subject: Make proper all the things ಠ_ರೃ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ponysay | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'ponysay') diff --git a/ponysay b/ponysay index e9e6141..ddaf7d0 100755 --- a/ponysay +++ b/ponysay @@ -1,23 +1,33 @@ #!/usr/bin/env bash export PERL_UNICODE=S -ponydir=$PWD/ponies +[[ -z ${PONYDIR} ]] && PONYDIR=/usr/share/ponies +HOMEDIR=${HOME}/.ponies + +cmd=cowsay +[[ ${0} == *ponythink ]] && cmd=cowthink function ponyf() { - if [[ -f ${ponydir}/${1}.cow ]] ; then - cowsay -f "${ponydir}/${1}.cow" $@ + if [[ -f ${HOMEDIR}/${1}.cow ]]; then + ${cmd} -f "${HOMEDIR}/${1}.cow" $@ + elif [[ -f ${PONYDIR}/${1}.cow ]]; then + ${cmd} -f "${PONYDIR}/${1}.cow" $@ else ponyr $@ fi } function ponyr() { - cowsay -f $(ls ${ponydir}/*.cow | sort -R | head -n1) $@ + if [[ -d ${HOMEDIR} ]] && [[ -n $(find ${HOMEDIR} -name \*.cow) ]]; then + ${cmd} -f $(ls ${HOMEDIR}/*.cow | sort -R | head -n1) $@ + elif [[ -d ${PONYDIR} ]] && [[ -n $(find ${PONYDIR} -name \*.cow) ]]; then + ${cmd} -f $(ls ${PONYDIR}/*.cow | sort -R | head -n1) $@ + fi } while getopts f:hv OPT do case ${OPT} in - v) echo "v0.01" ; exit;; + v) echo "v0.1" ; exit;; h) echo "helpherpderp" ; exit;; f) ponyf $* ; exit;; \?) echo "DERP"; exit;; -- cgit