Support ponies by name like "Apple Jack"

This commit is contained in:
Elis Axelsson 2012-07-21 10:39:24 +02:00
parent 40164221fb
commit 57fdde2f5e

View file

@ -270,7 +270,7 @@ while getopts $opts OPT; do
case ${OPT} in
v) version; exit ;;
h) usage; exit ;;
f) ponies+=( "$OPTARG" ) ;;
f) ponies=($(echo $OPTARG | sed -e 's/ //g' -e 's/,/\n/')) ;;
l) list; exit ;;
L) linklist; exit ;;
W) wrap="$OPTARG" ;;