terminus.sh revision 269041
1#!/bin/sh
2# $FreeBSD: stable/10/tools/tools/vt/fontcvt/terminus.sh 269041 2014-07-24 01:35:41Z emaste $
3
4for i in 6:12 8:14 8:16 10:18 10:20 11:22 12:24 14:28 16:32
5do
6	C=`echo $i | cut -f 1 -d :`
7	R=`echo $i | cut -f 2 -d :`
8	./vtfontcvt \
9		-w $C -h $R \
10		~/terminus-font-4.36/ter-u${R}n.bdf \
11		~/terminus-font-4.36/ter-u${R}b.bdf \
12		terminus-u${R}.vfnt
13	gzip -9nf terminus-u${R}.vfnt
14done
15