From a3d3111bfe26b8e5f5bc6049dfb2a4ca2edc7881 Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Tue, 17 Jan 2006 21:16:42 +0000 Subject: utils 1 git-svn-id: svn://tug.org/texlive/trunk@1484 c570f23f-e606-0410-a88d-b1316a301751 --- Build/source/utils/gzip/gzip_3.html | 71 +++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 Build/source/utils/gzip/gzip_3.html (limited to 'Build/source/utils/gzip/gzip_3.html') diff --git a/Build/source/utils/gzip/gzip_3.html b/Build/source/utils/gzip/gzip_3.html new file mode 100644 index 00000000000..c2827426fc6 --- /dev/null +++ b/Build/source/utils/gzip/gzip_3.html @@ -0,0 +1,71 @@ + + + + +Gzip User's Manual - 2. Sample Output + + +Go to the first, previous, next, last section, table of contents. +


+ + +

2. Sample Output

+

+ + + +

+Here are some realistic examples of running gzip. + + +

+This is the output of the command `gzip -h': + + + +

+gzip 1.2.4 (18 Aug 93)
+usage: gzip [-cdfhlLnNrtvV19] [-S suffix] [file ...]
+ -c --stdout      write on standard output, keep original files unchanged
+ -d --decompress  decompress
+ -f --force       force overwrite of output file and compress links
+ -h --help        give this help
+ -l --list        list compressed file contents
+ -L --license     display software license
+ -n --no-name     do not save or restore the original name and time stamp
+ -N --name        save or restore the original name and time stamp
+ -q --quiet       suppress all warnings
+ -r --recursive   operate recursively on directories
+ -S .suf  --suffix .suf     use suffix .suf on compressed files
+ -t --test        test compressed file integrity
+ -v --verbose     verbose mode
+ -V --version     display version number
+ -1 --fast        compress faster
+ -9 --best        compress better
+ file...          files to (de)compress. If none given, use standard input.
+
+ +

+This is the output of the command `gzip -v texinfo.tex': + + + +

+texinfo.tex:             71.6% -- replaced with texinfo.tex.gz
+
+ +

+The following command will find all gzip files in the current +directory and subdirectories, and extract them in place without +destroying the original: + + + +

+find . -name '*.gz' -print | sed 's/^\(.*\)[.]gz$/gunzip < "&" > "\1"/' | sh
+
+ +


+Go to the first, previous, next, last section, table of contents. + + -- cgit v1.2.3