+ figlets.sh

This commit is contained in:
committer@tuxwarrior
2025-05-09 17:42:47 -05:00
parent b2390ddfe4
commit 557ba02b3a

6
dots/bin/figlets.sh Executable file
View File

@@ -0,0 +1,6 @@
find /usr/share/figlet/fonts -name '*.[ft]lf' | while read -r font; do
echo "$font:"
figlet -t -f "$font" ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890
echo
echo
done | less