Re: Looking for True Type fonts

2000-10-01 Thread Aron Preseley

>common is that they have them all listed *individually*, and not
>one of them (that I have found so far) have all fonts in one big
>file that I can just download and extract.  Plus, most of the ones

If you are still looking for true type fonts in one place, the ROOT home 
page at CERN has them.  ROOT is an open source physics analysis package and 
supports True Type fonts.

Take a look at http://root.cern.ch/root/TrueType.html


Aron.
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.




Re: Looking for true type fonts

2000-09-30 Thread Guillermo S. Romero / Familia Romero

[EMAIL PROTECTED] (2000-09-29 at 2056.15 -0700):
[...]
> common is that they have them all listed *individually*, and not
> one of them (that I have found so far) have all fonts in one big
> file that I can just download and extract.  Plus, most of the ones

Use wget, for example:
wget -r -l1 -A zip http://site/dir/page-with-zip-links

> I have found are *.zip files, and the unzip command doesn't seem
[...]
> to unzip multiple files at once?  (I have read the man page, but
> to no avail).

Use a bash shell loop, for example: 
for i in `ls *zip`; do unzip $i; done

And also try places with fonts in one single archive. ;]
But I can remember none, sorry.

GSR