diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-15 15:26:52 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-15 15:26:52 +0000 |
commit | b08f4096533577934b885fa9df41d3881d141612 (patch) | |
tree | 8e5ffc0ba65ac34d97cd6a896d33b85a897a6da8 /appendixa/gzip-desc.xml | |
parent | ad08014624938a3a3bfd1b44e8b27d02c7b06dd8 (diff) |
Initial XML commit
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@174 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'appendixa/gzip-desc.xml')
-rw-r--r-- | appendixa/gzip-desc.xml | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/appendixa/gzip-desc.xml b/appendixa/gzip-desc.xml new file mode 100644 index 000000000..98398fd63 --- /dev/null +++ b/appendixa/gzip-desc.xml @@ -0,0 +1,101 @@ +<sect2> +<title>Contents</title> + +<para> +The Gzip package contains the compress, gunzip, gzexe, gzip, uncompress, +zcat, zcmp, zdiff, zforece, zgrep, zmore and znew programs. +</para> + +</sect2> + +<sect2><title>Description</title> + +<sect3><title>gunzip</title> + +<para> +gunzip decompresses files that are compressed with gzip. +</para> + +</sect3> + +<sect3><title>gzexe</title> + +<para> +gzexe allows you to compress executables in place and have them +automatically uncompress and execute when you run them (at a penalty in +performance). +</para> + +</sect3> + +<sect3><title>gzip</title> + +<para> +gzip reduces the size of the named files using Lempel-Ziv coding (LZ77). +</para> + +</sect3> + +<sect3><title>zcat</title> + +<para> +zcat uncompresses either a list of files on the command line or its +standard input and writes the uncompressed data on standard output +</para> + +</sect3> + +<sect3><title>zcmp</title> + +<para> +zcmp invokes the cmp program on compressed files. +</para> + +</sect3> + +<sect3><title>zdiff</title> + +<para> +zdiff invokes the diff program on compressed files. +</para> + +</sect3> + +<sect3><title>zforce</title> + +<para> +zforce forces a .gz extension on all gzip files so that gzip will not +compress them twice. This can be useful for files with names truncated +after a file transfer. +</para> + +</sect3> + +<sect3><title>zgrep</title> + +<para> +zgrep invokes the grep program on compressed files. +</para> + +</sect3> + +<sect3><title>zmore</title> + +<para> +Zmore is a filter which allows examination of compressed or plain text +files one screenful at a time on a soft-copy terminal (similar to the +more program). +</para> + +</sect3> + +<sect3><title>znew</title> + +<para> +Znew recompresses files from .Z (compress) format to .gz (gzip) format. +</para> + +</sect3> + +</sect2> + |