wok-next
annotate gzip/description.gzip-full.txt @ rev 20727
python-gevent-psycopg2: fix error "urllib2.HTTPError: HTTP Error 403: SSL is required"
author |
Aleksej Bobylev <al.bobylev@gmail.com> |
date |
Mon May 28 15:32:33 2018 +0300 (2018-05-28) |
parents |
|
children |
|
rev |
line source |
al@19745
|
1 * `gunzip` - decompresses gzipped files
|
al@19745
|
2 * `gzexe` - creates self-decompressing executable files
|
al@19745
|
3 * `gzip` - compresses the given files using Lempel-Ziv (LZ77) coding
|
al@19745
|
4 * `uncompress` - decompresses compressed files
|
al@19745
|
5 * `zcat` - decompresses the given gzipped files to standard output
|
al@19745
|
6 * `zcmp` - runs `cmp` on gzipped files
|
al@19745
|
7 * `zdiff` - runs `diff` on gzipped files
|
al@19745
|
8 * `zegrep` - runs `egrep` on gzipped files
|
al@19745
|
9 * `zfgrep` - runs `fgrep` on gzipped files
|
al@19745
|
10 * `zforce` - forces a `.gz` extension on all given files that are gzipped
|
al@19745
|
11 files, so that `gzip` will not compress them again; this can be useful when
|
al@19745
|
12 file names were truncated during a file transfer
|
al@19745
|
13 * `zgrep` - runs `grep` on gzipped files
|
al@19745
|
14 * `zless` - runs `less` on gzipped files
|
al@19745
|
15 * `zmore` - runs `more` on gzipped files
|
al@19745
|
16 * `znew` - re-compresses files from `compress` format to `gzip` format -
|
al@19745
|
17 `.Z` to `.gz`
|