19b50d902SRodney W. Grimes.\" Copyright (c) 1986, 1990, 1993 29b50d902SRodney W. Grimes.\" The Regents of the University of California. All rights reserved. 39b50d902SRodney W. Grimes.\" 49b50d902SRodney W. Grimes.\" This code is derived from software contributed to Berkeley by 59b50d902SRodney W. Grimes.\" James A. Woods, derived from original work by Spencer Thomas 69b50d902SRodney W. Grimes.\" and Joseph Orost. 79b50d902SRodney W. Grimes.\" 89b50d902SRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without 99b50d902SRodney W. Grimes.\" modification, are permitted provided that the following conditions 109b50d902SRodney W. Grimes.\" are met: 119b50d902SRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright 129b50d902SRodney W. Grimes.\" notice, this list of conditions and the following disclaimer. 139b50d902SRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright 149b50d902SRodney W. Grimes.\" notice, this list of conditions and the following disclaimer in the 159b50d902SRodney W. Grimes.\" documentation and/or other materials provided with the distribution. 169b50d902SRodney W. Grimes.\" 3. All advertising materials mentioning features or use of this software 179b50d902SRodney W. Grimes.\" must display the following acknowledgement: 189b50d902SRodney W. Grimes.\" This product includes software developed by the University of 199b50d902SRodney W. Grimes.\" California, Berkeley and its contributors. 209b50d902SRodney W. Grimes.\" 4. Neither the name of the University nor the names of its contributors 219b50d902SRodney W. Grimes.\" may be used to endorse or promote products derived from this software 229b50d902SRodney W. Grimes.\" without specific prior written permission. 239b50d902SRodney W. Grimes.\" 249b50d902SRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 259b50d902SRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 269b50d902SRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 279b50d902SRodney W. Grimes.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 289b50d902SRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 299b50d902SRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 309b50d902SRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 319b50d902SRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 329b50d902SRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 339b50d902SRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 349b50d902SRodney W. Grimes.\" SUCH DAMAGE. 359b50d902SRodney W. Grimes.\" 369b50d902SRodney W. Grimes.\" @(#)compress.1 8.2 (Berkeley) 4/18/94 37c3aac50fSPeter Wemm.\" $FreeBSD$ 389b50d902SRodney W. Grimes.\" 399b50d902SRodney W. Grimes.Dd April 18, 1994 409b50d902SRodney W. Grimes.Dt COMPRESS 1 4162500372SRuslan Ermilov.Os 429b50d902SRodney W. Grimes.Sh NAME 439b50d902SRodney W. Grimes.Nm compress , 449b50d902SRodney W. Grimes.Nm uncompress , 459b50d902SRodney W. Grimes.Nd compress and expand data 469b50d902SRodney W. Grimes.Sh SYNOPSIS 478fe908efSRuslan Ermilov.Nm 489b50d902SRodney W. Grimes.Op Fl cfv 499b50d902SRodney W. Grimes.Op Fl b Ar bits 509b50d902SRodney W. Grimes.Op Ar 519b50d902SRodney W. Grimes.Nm uncompress 529b50d902SRodney W. Grimes.Op Fl cfv 539b50d902SRodney W. Grimes.Op Ar 549b50d902SRodney W. Grimes.Sh DESCRIPTION 553898680cSPhilippe CharnierThe 563898680cSPhilippe Charnier.Nm 573898680cSPhilippe Charnierutility reduces the size of the named files using adaptive Lempel-Ziv coding. 589b50d902SRodney W. GrimesEach 599b50d902SRodney W. Grimes.Ar file 609b50d902SRodney W. Grimesis renamed to the same name plus the extension 619b50d902SRodney W. Grimes.Dq .Z . 629b50d902SRodney W. GrimesAs many of the modification time, access time, file flags, file mode, 639b50d902SRodney W. Grimesuser ID, and group ID as allowed by permissions are retained in the 649b50d902SRodney W. Grimesnew file. 659b50d902SRodney W. GrimesIf compression would not reduce the size of a 669b50d902SRodney W. Grimes.Ar file , 679b50d902SRodney W. Grimesthe file is ignored. 689b50d902SRodney W. Grimes.Pp 693898680cSPhilippe CharnierThe 703898680cSPhilippe Charnier.Nm uncompress 713898680cSPhilippe Charnierutility restores the compressed files to their original form, renaming the 729b50d902SRodney W. Grimesfiles by deleting the 739b50d902SRodney W. Grimes.Dq .Z 749b50d902SRodney W. Grimesextension. 759b50d902SRodney W. Grimes.Pp 769b50d902SRodney W. GrimesIf renaming the files would cause files to be overwritten and the standard 779b50d902SRodney W. Grimesinput device is a terminal, the user is prompted (on the standard error 789b50d902SRodney W. Grimesoutput) for confirmation. 799b50d902SRodney W. GrimesIf prompting is not possible or confirmation is not received, the files 809b50d902SRodney W. Grimesare not overwritten. 819b50d902SRodney W. Grimes.Pp 829b50d902SRodney W. GrimesIf no files are specified, the standard input is compressed or uncompressed 839b50d902SRodney W. Grimesto the standard output. 849b50d902SRodney W. GrimesIf either the input and output files are not regular files, the checks for 859b50d902SRodney W. Grimesreduction in size and file overwriting are not performed, the input file is 869b50d902SRodney W. Grimesnot removed, and the attributes of the input file are not retained. 879b50d902SRodney W. Grimes.Pp 889b50d902SRodney W. GrimesThe options are as follows: 89fae643c5SPhilippe Charnier.Bl -tag -width indent 909b50d902SRodney W. Grimes.It Fl b 919b50d902SRodney W. GrimesSpecify the 929b50d902SRodney W. Grimes.Ar bits 939b50d902SRodney W. Grimescode limit (see below). 949b50d902SRodney W. Grimes.It Fl c 959b50d902SRodney W. GrimesCompressed or uncompressed output is written to the standard output. 969b50d902SRodney W. GrimesNo files are modified. 979b50d902SRodney W. Grimes.It Fl f 989b50d902SRodney W. GrimesForce compression of 999b50d902SRodney W. Grimes.Ar file , 1009b50d902SRodney W. Grimeseven if it is not actually reduced in size. 1019b50d902SRodney W. GrimesAdditionally, files are overwritten without prompting for confirmation. 1029b50d902SRodney W. Grimes.It Fl v 1039b50d902SRodney W. GrimesPrint the percentage reduction of each file. 1049b50d902SRodney W. Grimes.El 1059b50d902SRodney W. Grimes.Pp 1063898680cSPhilippe CharnierThe 1073898680cSPhilippe Charnier.Nm 1083898680cSPhilippe Charnierutility uses a modified Lempel-Ziv algorithm. 1099b50d902SRodney W. GrimesCommon substrings in the file are first replaced by 9-bit codes 257 and up. 1109b50d902SRodney W. GrimesWhen code 512 is reached, the algorithm switches to 10-bit codes and 1119b50d902SRodney W. Grimescontinues to use more bits until the 1129b50d902SRodney W. Grimeslimit specified by the 1139b50d902SRodney W. Grimes.Fl b 1149b50d902SRodney W. Grimesflag is reached (the default is 16). 1159b50d902SRodney W. Grimes.Ar Bits 1169b50d902SRodney W. Grimesmust be between 9 and 16. 1179b50d902SRodney W. Grimes.Pp 1189b50d902SRodney W. GrimesAfter the 1199b50d902SRodney W. Grimes.Ar bits 1209b50d902SRodney W. Grimeslimit is reached, 121fae643c5SPhilippe Charnier.Nm 1229b50d902SRodney W. Grimesperiodically checks the compression ratio. 1239b50d902SRodney W. GrimesIf it is increasing, 124fae643c5SPhilippe Charnier.Nm 1259b50d902SRodney W. Grimescontinues to use the existing code dictionary. 1269b50d902SRodney W. GrimesHowever, if the compression ratio decreases, 127fae643c5SPhilippe Charnier.Nm 1289b50d902SRodney W. Grimesdiscards the table of substrings and rebuilds it from scratch. This allows 1299b50d902SRodney W. Grimesthe algorithm to adapt to the next "block" of the file. 1309b50d902SRodney W. Grimes.Pp 1319b50d902SRodney W. GrimesThe 1329b50d902SRodney W. Grimes.Fl b 1339b50d902SRodney W. Grimesflag is omitted for 13425537080SPhilippe Charnier.Nm uncompress 1359b50d902SRodney W. Grimessince the 1369b50d902SRodney W. Grimes.Ar bits 1379b50d902SRodney W. Grimesparameter specified during compression 1389b50d902SRodney W. Grimesis encoded within the output, along with 1399b50d902SRodney W. Grimesa magic number to ensure that neither decompression of random data nor 1409b50d902SRodney W. Grimesrecompression of compressed data is attempted. 1419b50d902SRodney W. Grimes.Pp 1429b50d902SRodney W. GrimesThe amount of compression obtained depends on the size of the 1439b50d902SRodney W. Grimesinput, the number of 1449b50d902SRodney W. Grimes.Ar bits 1459b50d902SRodney W. Grimesper code, and the distribution of common substrings. 1469b50d902SRodney W. GrimesTypically, text such as source code or English is reduced by 50\-60%. 1479b50d902SRodney W. GrimesCompression is generally much better than that achieved by Huffman 1489b50d902SRodney W. Grimescoding (as used in the historical command pack), or adaptive Huffman 1499b50d902SRodney W. Grimescoding (as used in the historical command compact), and takes less 1509b50d902SRodney W. Grimestime to compute. 151fae643c5SPhilippe Charnier.Sh DIAGNOSTICS 1523e4d070bSTom Rhodes.Ex -std compress uncompress 1539b50d902SRodney W. Grimes.Sh SEE ALSO 1543e4d070bSTom Rhodes.Xr gunzip 1 , 1553e4d070bSTom Rhodes.Xr gzexe 1 , 1563e4d070bSTom Rhodes.Xr gzip 1 , 1573e4d070bSTom Rhodes.Xr zcat 1 , 1583e4d070bSTom Rhodes.Xr zmore 1 , 1593e4d070bSTom Rhodes.Xr znew 1 1609b50d902SRodney W. Grimes.Rs 1619b50d902SRodney W. Grimes.%A Welch, Terry A. 1629b50d902SRodney W. Grimes.%D June, 1984 1639b50d902SRodney W. Grimes.%T "A Technique for High Performance Data Compression" 1649b50d902SRodney W. Grimes.%J "IEEE Computer" 1659b50d902SRodney W. Grimes.%V 17:6 1669b50d902SRodney W. Grimes.%P pp. 8-19 1679b50d902SRodney W. Grimes.Re 1689b50d902SRodney W. Grimes.Sh HISTORY 1699b50d902SRodney W. GrimesThe 1709b50d902SRodney W. Grimes.Nm 1719b50d902SRodney W. Grimescommand appeared in 1729b50d902SRodney W. Grimes.Bx 4.3 . 173