572145798cfd50ef8997d15414a5d35d37034db0
[dragonfly.git] / usr.bin / minigzip / minigzip.1
1 .\" Copyright (c) 1997
2 .\"     Michael Smith
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD: src/usr.bin/minigzip/minigzip.1,v 1.3.2.6 2003/02/24 22:37:42 trhodes Exp $
26 .\" $DragonFly: src/usr.bin/minigzip/Attic/minigzip.1,v 1.2 2003/06/17 04:29:29 dillon Exp $
27 .\"
28 .Dd October 27, 2002
29 .Dt MINIGZIP 1
30 .Os
31 .Sh NAME
32 .Nm minigzip
33 .Nd minimal implementation of the 'gzip' compression tool
34 .Sh SYNOPSIS
35 .Nm
36 .Op Fl cd
37 .Op Ar
38 .Sh DESCRIPTION
39 The
40 .Nm
41 utility is a minimal implementation of the
42 .Xr gzip 1
43 utility.  It supports
44 compression and decompression of individual files, as well as
45 streaming compression and decompression via standard input and
46 output.
47 .Pp
48 The default operation is compression, decompression can be
49 selected by supplying the
50 .Fl d
51 flag on the commandline.
52 .Pp
53 If any
54 .Ar file
55 arguments are supplied, the operation is performed on each file
56 separately.  Compression replaces the original file with one having a
57 .Pa .gz
58 suffix.  Decompression will remove a
59 .Pa .gz
60 suffix if one is present.
61 .Pp
62 If no
63 .Ar file
64 arguments are supplied,
65 .Nm
66 reads from standard input and writes the results of the operation
67 to standard output.
68 .Pp
69 If the
70 .Fl c
71 option is specified,
72 .Nm
73 writes the results to standard output and keep the original files
74 unchanged.
75 .Sh SEE ALSO
76 .Xr gzip 1
77 .Sh AUTHORS
78 The
79 .Nm
80 utility was written by
81 .An Jean-loup Gailly .