aboutsummaryrefslogtreecommitdiff
path: root/ponysay
blob: 83d76eba3db2feb800d04e97144c1ee39a0c6ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash
export PERL_UNICODE=S
ponydir=$PWD/ponies

function ponyf() {
    if [[ -f ${ponydir}/${1}.cow ]] ; then
        cowsay -f "${ponydir}/${1}.cow" $@
    else
       ponyr
    fi
}
function ponyr() {
    cowsay -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 ${2}; exit;;
	\?) show_error "DERP"; exit;;
    esac
done