nsbin/figlet_alle_fonts
Nico Schottelius 78e21b5200 mass update commit
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
2011-07-21 10:59:03 +02:00

12 lines
375 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