rwxrob-dot/scripts/allfigl
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

8 lines
124 B
Bash
Executable File

#!/bin/sh
for font in /usr/share/figlet/*.flf; do
clear
echo "FONT: $font"
figlet -f "${font}" hello
read line
done