Path: utzoo!attcan!uunet!jarthur!usc!zaphod.mps.ohio-state.edu!sdd.hp.com!ucsd!ucbvax!parc.xerox.com!janssen From: janssen@parc.xerox.com (Bill Janssen) Newsgroups: comp.soft-sys.andrew Subject: Re: Fonts in bdf form? Message-ID: Date: 31 Jul 90 00:17:55 GMT References: <9007302201.AA13125@informatics.WUstl.EDU> Sender: daemon@ucbvax.BERKELEY.EDU Organization: The Internet Lines: 12 I just did this, by running a find script on the Andrew sources to find all .fdb files, and put them in a single directory, then running fdb2bdf on each file in that directory. Here's fdb2bdf. Note that it assumes you have fdbbdf on your search path (presumably in ${ANDREWDIR}/bin). #!/bin/csh sed -e 's/^$spacing \(.*\),.*$/$spacing \1,0/' ${1:r}.fdb > /tmp/${1:r}.tfdb fdbbdf /tmp/${1:r}.tfdb >${1:r}.bdf rm /tmp/${1:r}.tfdb Bill