#!/bin/csh
# Prints out list of available Figlet fonts that shows the font name
# in both ASCII and the font itself.
# By Greg Galperin, MIT Artificial Intelligence Lab, grg@ai.mit.edu, NOV93

foreach f (`figlet -F | sed 1,3d`)
echo $f :
echo $f | figlet -f $f
echo ""; echo ""
end
