mirror of
https://github.com/erkin/ponysay.git
synced 2025-02-14 16:44:23 +01:00
10 lines
213 B
Text
10 lines
213 B
Text
|
#!/bin/sh
|
||
|
|
||
|
dir="/usr/share/ponysay/ttyponies"
|
||
|
if [ -n "${DISPLAY}" ]; then
|
||
|
dir="/usr/share/ponysay/ponies"
|
||
|
fi
|
||
|
|
||
|
find "${dir}" | grep '\.pony$' | shuf | head -n 1 | xargs cat | sed -e ':a;N;$!ba;s:\$[^$]*\$::g'
|
||
|
|