Skip to content

Instantly share code, notes, and snippets.

@alessandrostone
Forked from mkottman/figfonts.sh
Created November 13, 2019 22:55
Show Gist options
  • Save alessandrostone/ee41fa87828af855406df020ead62708 to your computer and use it in GitHub Desktop.
Save alessandrostone/ee41fa87828af855406df020ead62708 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