#!/bin/sh -
# showfigfonts by Glenn Chappell <ggc@uiuc.edu>
# 17 Feb 1994
# Based on showfigfonts by Greg Galperin <grg@ai.mit.edu>, Nov 1993.
#
# Prints a list of available figlet fonts, along with a sample of each
# font.  If directory is given, lists fonts in that directory; otherwise
# uses the default font directory.  If word is given, prints that word
# in each font; otherwise prints the font name.
#
# Usage: showfigfonts [ -d directory ] [ word ]

# Set up PATH so figlet can be found
PATH=$PATH:`dirname $0`

# Get figlet version
FIGLETVERSION=`figlet -I1 2>/dev/null`
if test -z "$FIGLETVERSION" ; then
  FIGLETVERSION=20000
fi

if test "$1" = '-d' ; then
  FONTDIR="$2"
  WORD="$3"
else
  WORD="$1"
  if test $FIGLETVERSION -lt 20100 ; then
    # figlet 2.0
    FONTDIR=`figlet -F | sed -e '1d' -e '3,$d' -e 's/Font directory: //'`
  else
    # figlet 2.1 or later
    FONTDIR=`figlet -I2`
  fi
fi

cd $FONTDIR
for F in `ls *.flf | sed s/\.flf$//` ; do
  echo $F :
  echo ${WORD:-$F} | figlet -f $F
  echo "" ; echo ""
done

