nsbin/figlet_alle_fonts
Nico Schottelius c70431fb0d correct subject
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
2010-12-01 14:26:27 +01:00

11 lines
295 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