Need a script to process some files

Eric Thelin eric@thelin.org
Sat, 30 Sep 2000 11:50:05 -0700 (MST)


On Sat, 30 Sep 2000, Rick Rosinski wrote:

> I am following the Font-HOWTO to set up True Type font support
> for StarOffice 5.2.  Everything was working out fine until I ran
> into the step where I need to do "touch font.pfb" for each *.ttf file.
> I have too many fonts to process them individually.  Does anybody
> have a script handy that will read a directory of *.ttf and run
> an external command that will run "touch <whater>.pfb", basically
> creating empty files - all with .pfb as the extension instead of .ttf?
> This would really be helpful, as I will then be able to print the newly
> installed ttf files with StarOffice.

#!/bin/bash
for x in *.ttf
do
  touch ${x%.ttf}.pfb
done


Eric


Eric Thelin                                          erict@aztechbiz.com
           AZtechBiz.com: Where Arizona Does Tech Business
               Voice: 480-377-6743   Fax: 480-377-6755