Skip to content

Instantly share code, notes, and snippets.

@crahan
Created August 25, 2014 20:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save crahan/0b19d00972e628adc7f3 to your computer and use it in GitHub Desktop.
Save crahan/0b19d00972e628adc7f3 to your computer and use it in GitHub Desktop.
Print out a preview of all installed Figlet fonts.
#!/bin/sh
if [ "$#" -ne 1 ]; then
echo "I need some text to print."
exit 1
fi
for i in `ls /usr/local/Cellar/figlet/2.2.5/share/figlet/fonts/*.flf`; do
echo -e "==== $(basename $i) ====\n"
figlet -f $i $1
echo -e "\n\n\n"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment