-
-
Save napobear/44b781522f20fcd56f349aec33b3ef8a to your computer and use it in GitHub Desktop.
Show all ASCII art figlet fonts installed on your system using the font itself
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment