Creating PDF documents
Jean-Pierre A. Radley
appl at jpr.com
Thu Mar 10 21:09:30 PST 2005
Lerebours, Jose propounded (on Thu, Mar 10, 2005 at 03:40:12PM -0600):
| JP wondered:
|
| >
| > Lerebours, Jose propounded (on Thu, Mar 10, 2005 at 03:23:43PM -0600):
| > | JP Posted:
| > |
| > | >EEEEE... make that
| > | >
| > | >
| > ftp.digi.com/support/legacy/digi/utilities/digifax/released/2.8/faxjet.01z
| >| >
| >| >| Faxjet will convert a PCL file to a TIFF file, suitable for immediate
| >| >| faxing, or for further conversion with programs from libtiff, e.g.,
| >| >| tiff2pdf or tiff2ps.
| >|
| >|
| >| I noticed above links to a zip file but what do I use to unzip it?
| >|
| >| gunzip nor unzip can ... :0(
| >|
| >| What do I need to decompress it?
| >
| >Who told you it was a zip file?
| >
|
| # file faxjet.01z
| faxjet.01z: gzip compressed data - deflate method , max compression
|
|
| As you can see, if I run file against it, it says that it is a gzip
| compressed file ... Am I doing something wrong?
I suspect you typed
gunzip faxjet.01z
which failed, because there isn't a "well-known" (well-known to gzip,
that is) extension on it, like .gz or .tgz or .tar.gz.
You can either rename it to faxjet.O1.gz and retype your command, or
forget it and use stdin instead. I.e., either
mv faxjet.01z faxjet.01.gz; gunzip faxjet.01.gz
or
< faxjet.01z gunzip > faxjet.O1
or
gzcat < faxjet.01z > faxjet.01
should work.
--
JP
More information about the Filepro-list
mailing list