mirror of
https://github.com/erkin/ponysay.git
synced 2025-02-12 07:46:44 +01:00
Support ponies by name like "Apple Jack"
This commit is contained in:
parent
40164221fb
commit
57fdde2f5e
1 changed files with 1 additions and 1 deletions
2
ponysay
2
ponysay
|
@ -270,7 +270,7 @@ while getopts $opts OPT; do
|
||||||
case ${OPT} in
|
case ${OPT} in
|
||||||
v) version; exit ;;
|
v) version; exit ;;
|
||||||
h) usage; exit ;;
|
h) usage; exit ;;
|
||||||
f) ponies+=( "$OPTARG" ) ;;
|
f) ponies=($(echo $OPTARG | sed -e 's/ //g' -e 's/,/\n/')) ;;
|
||||||
l) list; exit ;;
|
l) list; exit ;;
|
||||||
L) linklist; exit ;;
|
L) linklist; exit ;;
|
||||||
W) wrap="$OPTARG" ;;
|
W) wrap="$OPTARG" ;;
|
||||||
|
|
Loading…
Reference in a new issue