Skip to content

Instantly share code, notes, and snippets.

@mblarsen
Created October 24, 2020 07:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mblarsen/026a0739cfd05e4ccc477d3afa691fac to your computer and use it in GitHub Desktop.
Save mblarsen/026a0739cfd05e4ccc477d3afa691fac to your computer and use it in GitHub Desktop.
Small script so showcase all fonts for figlet and toilet
#!/usr/bin/env bash
for f in $(ls /usr/share/figlet/*{flf,tlf}); do
f=$(basename -s .tlf $f)
f=$(basename -s .flf $f)
figlet -f $f $f
toilet --gay -S -f $f $f
echo $f
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment