Skip to content

Instantly share code, notes, and snippets.

@napobear
Forked from mkottman/figfonts.sh
Created May 24, 2024 06:27
Show Gist options
  • Select an option

  • Save napobear/44b781522f20fcd56f349aec33b3ef8a to your computer and use it in GitHub Desktop.

Select an option

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
#!/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