File: showfigfonts

package info (click to toggle)
figlet 2.2.5-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 1,536 kB
  • ctags: 397
  • sloc: ansic: 3,611; sh: 174; makefile: 80; lisp: 37
file content (55 lines) | stat: -rwxr-xr-x 1,360 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/sh -
# showfigfonts by Glenn Chappell <ggc@uiuc.edu>
# figlet release 2.1.1 -- 25 Aug 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 ]

DIR=`dirname $0`
FIGLET=$DIR/figlet

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

USAGE="Usage: `basename $0` [ -d directory ] [ word ]"

if [ "$1" = '-d' ]; then
  FONTDIR="$2"
  WORD="$3"
  if [ $# -gt 3 ] || [ $# -lt 2 ]; then
    echo "$USAGE"
    exit 1
  fi
else
  WORD="$1"
  if [ $# -gt 1 ]; then
    echo "$USAGE"
    exit 1
  fi
  if [ "$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

FONTLIST=`ls "$FONTDIR"/*.flf | sed 's!.*/\(.*\)\.flf$!\1!'`
for F in $FONTLIST ; do
  echo "$F :"
  if [ -n "$WORD" ]; then
    echo "$WORD" | $FIGLET -d "$FONTDIR" -f "$F"
  else
    echo "$F" | $FIGLET -d "$FONTDIR" -f "$F"
  fi
  echo "" ; echo ""
done