nsbin/figlet_alle_fonts
Nico Schottelius 395eb2b3b1 script to create new mailinglist
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
2010-07-12 22:47:21 +02:00

9 lines
185 B
Bash
Executable file

#!/bin/sh
# show all installed figlet fonts
#
set -e
#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