mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
8 lines
124 B
Bash
Executable File
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
|