erkin / ponysay

Pony rewrite of cowsay.
GNU General Public License v3.0
1.19k stars 81 forks source link

I want to see the list of preview of figure #292

Closed quenneylam closed 4 years ago

quenneylam commented 4 years ago

There are so many ponies and i want to see all to choose my fav one. But it take time to try all by command . Thanks

maandree commented 4 years ago

You can use ponysay-tool --browse /usr/share/ponysay/ponies/ and ponysay-tool --browse /usr/share/ponysay/extraponies/. Unfortunately it has to be update to because the list of ponies nowadays is too long that you cannot see the entire list.

You can also use for p in /usr/share/ponysay/ponies/*.pony; do printf '\n\n\n\n\n%s\n' "$p" | rev | cut -d '/' -f 1 | rev | cut -d . -f 1; ponysay -of "$p"; done or (and this one is bit harder to cancel) for p in /usr/share/ponysay/ponies/*.pony; do printf '%s\n' "$p" | rev | cut -d '/' -f 1 | rev | cut -d . -f 1 | ponysay -f "$p"; done.

matthias4217 commented 4 years ago

There is also this : https://github.com/erkin/ponysay/issues/286

quenneylam commented 4 years ago

Thank you