Compress (Unix)
From Just Solve the File Format Problem
(Difference between revisions)
Line 1: | Line 1: | ||
{{FormatInfo | {{FormatInfo | ||
+ | |name=compress | ||
|formattype=electronic | |formattype=electronic | ||
|subcat=Compression | |subcat=Compression | ||
Line 8: | Line 9: | ||
== Identifiers == | == Identifiers == | ||
− | The conventional filename extension is a capitalized '''.Z'''. We list lowercase '''.z''' as well, only because | + | 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 <code>1F 9D</code>. | ||
== See also == | == See also == |
Revision as of 16:46, 25 August 2013
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
- gzip can uncompress compressed files.