2010-07-12 20:47:21 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# show all installed figlet fonts
|
|
|
|
#
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2006-07-20 07:54:37 +00:00
|
|
|
#cd /usr/figle*/share/figlet/
|
|
|
|
cd /usr/share/figlet
|
2010-12-01 13:26:27 +00:00
|
|
|
cd /usr/share/figlet/fonts/
|
|
|
|
#for a in *.flf; do BLA=${a%.flf}; echo $BLA; echo hallo | figlet -f $BLA; done
|
2011-07-21 08:59:03 +00:00
|
|
|
#for a in *.flf; do BLA=${a%.flf}; echo $BLA; echo CM Bofs | figlet -f $BLA; done
|
2013-10-26 21:28:38 +00:00
|
|
|
#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
|