--- /dev/null
+# Print a string with all the figlet fonts
+figlet-sample () {
+ if [[ -n "${1+x}" ]]
+ then
+ ls -FG `figlet -I 2` | grep --color=auto 'flf' | xargs -I '{}' basename '{}' '.flf' | xargs -I '{}' figlet -f '{}' $1
+ else
+ echo 'Usage: figlet-sample <string>'
+ fi
+}