6 lines
159 B
Bash
Executable File
6 lines
159 B
Bash
Executable File
#!/bin/sh
|
|
figlist | awk '/fonts/ {f=1;next} /control/ {f=0} f {print}' | while read font; do
|
|
echo "=== $font ==="
|
|
echo $font | figlet -f $font
|
|
done | less
|