mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-22 12:27:59 +01:00
1b5440288a
Signed-off-by: Pablo Lezaeta Reyes <prflr88@gmail.com>
9 lines
213 B
Bash
Executable file
9 lines
213 B
Bash
Executable file
#!/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'
|
|
|