nsbin/figlet_alle_fonts
Nico Schottelius 9468f9b060 update
Signed-off-by: Nico Schottelius <nico@bento.schottelius.org>
2013-10-26 23:28:38 +02:00

13 lines
456 B
Bash
Executable file

#!/bin/sh
# show all installed figlet fonts
#
set -e
#cd /usr/figle*/share/figlet/
cd /usr/share/figlet
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 cdist | figlet -f $BLA; done