Compress (Unix)
From Just Solve the File Format Problem
(Difference between revisions)
(→Software) |
|||
Line 18: | Line 18: | ||
== Software == | == Software == | ||
− | * [ | + | * [https://github.com/vapier/ncompress ncompress] |
+ | * [https://www.gnu.org/software/gzip/ Gzip] can uncompress '''.Z''' files. | ||
* [[7-Zip]] | * [[7-Zip]] | ||
* [http://web.archive.org/web/20130702195528/http://www.willus.com/archive/unixcmds.zip Windows port of Compress utility] | * [http://web.archive.org/web/20130702195528/http://www.willus.com/archive/unixcmds.zip Windows port of Compress utility] | ||
Line 24: | Line 25: | ||
== External links == | == External links == | ||
* [[Wikipedia:Compress|Wikipedia article]] | * [[Wikipedia:Compress|Wikipedia article]] | ||
+ | |||
+ | {{DISPLAYTITLE:compress}} |
Revision as of 14:37, 29 November 2015
compress is a Unix command line utility, and a general-purpose compressed file format. Its compression algorithm is based on LZW.
Contents |
Identifiers
The conventional filename extension is a capitalized .Z. We list lowercase .z as well, only because filenames are not always case-sensitive.
Identification
Files begin with bytes 1F 9D
.
See also
- pack - A compressed file format with a similar filename extension.
Software
- ncompress
- Gzip can uncompress .Z files.
- 7-Zip
- Windows port of Compress utility
External links