#!/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 ] 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 ]" 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 p;follow=1'>logtreecommitdiffstats
path: root/isdb-t/br-sc-Joacaba (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2014-09-05Fix the Makefile to do the right thing after the conversionMauro Carvalho Chehab1-5/+8
Now that the tables got converted, rewrite it to generate DVBv3 from the DVBv5 channels, and to generate DVBv5 again from DVBv3, for testing purposes. Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
2014-09-05Move the contents of dvbv5_dvb-t into dvb-tMauro Carvalho Chehab1172-8674/+832
Now that we have everything with DVBv5 format, we can get rid of duplicated tables. Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
2014-09-05Convert existing tables to DVBv5 formatMauro Carvalho Chehab891-7439/+72141
All comments were preserved on this conversion, thanks to a temporary patch for libdvbv5. Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
2014-09-04Makefile: Add support to convert from DVBv5 to DVBv3Mauro Carvalho Chehab1-2/+13
That does the conversion from a previously generated DVBv5 directory back to DVBv3. This is useful to check if dvb-fe-convert is doing the right thing. Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>