Created
October 24, 2020 07:40
-
-
Save mblarsen/026a0739cfd05e4ccc477d3afa691fac to your computer and use it in GitHub Desktop.
Small script so showcase all fonts for figlet and toilet
This file contains 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
#!/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