SCO compress LZH
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) |
Dexvertbot (Talk | contribs) m (Change telparia.com samples link to template) |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
|extensions={{ext|Z}} | |extensions={{ext|Z}} | ||
}} | }} | ||
− | '''SCO compress LZH''' refers to a compressed file format that can be created by the SCO Unix version of the <code>compress</code> utility, as an alternative to the [[compress|standard compress format]]. The LZH format usually has a better compression ratio. The <code>-H</code> option must be used to create such files. | + | '''SCO compress LZH''' refers to a compressed file format that can be created by the SCO Unix version of the <code>compress</code> utility, as an alternative to the [[compress (Unix)|standard compress format]]. The LZH format usually has a better compression ratio. The <code>-H</code> option must be used to create such files. |
+ | |||
+ | The man page says "Portions of this code used for Lempel-Ziv-Huffman encoding were based on Rahul Dhesi's [[Zoo]] archiver which was adapted from Haruhiko Okumura's [[Ar (Haruhiko Okumura)|ar archiver]]". | ||
== Identification == | == Identification == | ||
Files begin with signature bytes {{magic|1f a0}}. | Files begin with signature bytes {{magic|1f a0}}. | ||
− | Compare to [[compress#Identification]]. | + | Compare to [[compress (Unix)#Identification]]. |
== Software == | == Software == | ||
− | * [https://www.gnu.org/software/gzip/ GNU | + | * [https://www.gnu.org/software/gzip/ GNU Gzip] |
+ | * {{Deark}} | ||
+ | * [https://github.com/temisu/ancient Ancient] | ||
+ | |||
+ | == Sample files == | ||
+ | * {{DexvertSamples|archive/scoCompress}} | ||
== Links == | == Links == | ||
* [http://osr600doc.sco.com/en/man/html.C/compress.C.html SCO compress man page] | * [http://osr600doc.sco.com/en/man/html.C/compress.C.html SCO compress man page] | ||
− | + | [[Category:File formats with extension .z]] | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
[[Category:File formats with case sensitive extensions]] | [[Category:File formats with case sensitive extensions]] |
Latest revision as of 02:55, 28 December 2023
SCO compress LZH refers to a compressed file format that can be created by the SCO Unix version of the compress
utility, as an alternative to the standard compress format. The LZH format usually has a better compression ratio. The -H
option must be used to create such files.
The man page says "Portions of this code used for Lempel-Ziv-Huffman encoding were based on Rahul Dhesi's Zoo archiver which was adapted from Haruhiko Okumura's ar archiver".
Contents |
[edit] Identification
Files begin with signature bytes 1f a0
.
Compare to compress (Unix)#Identification.