395eb2b3b1
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
9 lines
185 B
Bash
Executable file
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
|