#!/bin/sh - # showfigfonts by Glenn Chappell # figlet release 2.1.1 -- 25 Aug 1994 # Based on showfigfonts by Greg Galperin , 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 DIRSAVE=`pwd` cd `dirname "$0"` PATH="$PATH":`pwd` cd "$DIRSAVE" # 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 cd "$FONTDIR" FONTLIST=`ls *.flf | sed s/\.flf$//` cd $DIRSAVE 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 s
AgeCommit message (Expand)AuthorFilesLines
2024-01-31isdb-t: Update Brazil channel listsMauro Carvalho Chehab1935-11312/+70605
2024-01-30dvb-s: drop transponders that aren't there at Lyngsat anymoreMauro Carvalho Chehab50-20357/+0
2024-01-30dvb-s: update from today's Lyngsat reportMauro Carvalho Chehab196-15543/+15859
2024-01-30dtv-scan-tables: full uk transmitter updateSimon Liddicott81-500/+163
2022-11-25dtv-scan-tables: hu-Digikabel changesHrotkó Gábor1-1/+26
2022-04-30pt-All: fix modulationMauro Carvalho Chehab1-10/+10
2022-04-30pt-All: Update Portugal channelsMauro Carvalho Chehab1-34/+70
2022-03-07Update Brazilian ISDB-T tablesMauro Carvalho Chehab549-2923/+13860
2022-03-07Update satellite channel lists from LyngsatMauro Carvalho Chehab54-1882/+2326
2021-12-14dtv-scan-tables: latest UK changesSimon Liddicott4-24/+24
2021-04-30update Brazilian scan filesMauro Carvalho Chehab2476-12805/+69312
2021-04-30Remove legacy entriesMauro Carvalho Chehab129-24898/+0
2021-04-30Add new satellites from LyngsatMauro Carvalho Chehab75-21/+29721
2021-04-30Rename a few satellites with two names and update frequenciesMauro Carvalho Chehab2-283/+182
2021-04-30Update frequencies from LyngsatMauro Carvalho Chehab188-12304/+12666