nsbin/figlet_alle_fonts

16 lines
475 B
Plaintext
Raw Permalink Normal View History

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