#!/bin/sh - # figlist by Glenn Chappell # figlet release 2.1.1 -- 25 Aug 1994 # # Lists all fonts and control files in figlet's default font directory. # Replaces "figlet -F", which was removed from figlet version 2.1. # # Usage: figlist [ -d directory ] # 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 ]" if [ "$1" = "-d" ]; then FONTDIROPT="-d $2" if [ $# -ne 2 ]; then echo "$USAGE" exit 1 fi else FONTDIROPT="" if [ $# -ne 0 ]; then echo "$USAGE" exit 1 fi fi if [ "$FIGLETVERSION" -lt 20100 ]; then # figlet 2.0 figlet $FONTDIROPT -F exit fi # From here on we may assume figlet 2.1 or later FONTDIR=`figlet $FONTDIROPT -I2` FONT=`figlet -I3` echo "Default font: $FONT" echo "Font directory: $FONTDIR" if [ -d "$FONTDIR" ] && [ -r "$FONTDIR" ]; then cd "$FONTDIR" if ls *.flf >/dev/null 2>&1 ; then echo "Figlet fonts in this directory:" ls *.flf 2>/dev/null | sed s/\.flf$// else echo 'No figlet fonts in this directory' fi if ls *.flc >/dev/null 2>&1 ; then echo "Figlet control files in this directory:" ls *.flc 2>/dev/null | sed s/\.flc$// else echo 'No figlet control files in this directory' fi else echo 'Unable to open directory' fi ive' href='/debian/dtv-scan-tables.git/log/isdb-t/br-mg-Arapora?follow=1'>logtreecommitdiffstats
path: root/isdb-t/br-mg-Arapora (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2014-10-15Imported Upstream version 0+git20141009.d26b627upstream/0+git20141009.d26b627Jonathan McCrohan2010-11120/+159271
2014-07-23Imported Upstream version 0+git20140611.14bd6c7upstream/0+git20140611.14bd6c7Jonathan McCrohan7-11/+60
2014-05-13Imported Upstream version 0+git20140512.1246b27upstream/0+git20140512.1246b27Jonathan McCrohan391-301/+3983
2014-04-05Imported Upstream version 0+git20140326.cfc2975upstream/0+git20140326.cfc2975Jonathan McCrohan118-656/+877