nsbin/figlet_alle_fonts

10 lines
185 B
Plaintext
Raw Normal View History

#!/bin/sh
# show all installed figlet fonts
#
set -e
2006-07-20 07:54:37 +00:00
#cd /usr/figle*/share/figlet/
cd /usr/share/figlet
for a in *.flf; do BLA=${a%.flf}; echo $BLA; echo hallo | figlet -f $BLA; done