#!/bin/sh # This script generates the 13 fonts from the data file "vfont.dat" which # is part of the DOS - OS/2 program found in vfont2.zip via anon ftp from # a multitude of sites. (File size "vfont2.zip" = 29312 bytes, version 5.10) dd if=vfont.dat of=s.fnt bs=1 skip=0 count=4096 dd if=vfont.dat of=sd.fnt bs=1 skip=4096 count=4096 dd if=vfont.dat of=r.fnt bs=1 skip=8192 count=4096 dd if=vfont.dat of=ro.fnt bs=1 skip=12288 count=4096 dd if=vfont.dat of=rl.fnt bs=1 skip=16384 count=4096 dd if=vfont.dat of=mu.fnt bs=1 skip=20480 count=4096 dd if=vfont.dat of=ml.fnt bs=1 skip=24576 count=4096 dd if=vfont.dat of=t.fnt bs=1 skip=28672 count=4096 dd if=vfont.dat of=c.fnt bs=1 skip=32768 count=4096 dd if=vfont.dat of=b.fnt bs=1 skip=36864 count=4096 dd if=vfont.dat of=m.fnt bs=1 skip=40960 count=4096 dd if=vfont.dat of=mr.fnt bs=1 skip=45056 count=4096 dd if=vfont.dat of=sc.fnt bs=1 skip=49152 count=4096