gzipとは、ファイルをGZIP形式で圧縮するUnix/Linuxコマンドであり、GNUプロジェクトによって開発されている。なお、GZIP形式はZIP形式と互換性が無い。
gzip [ -acdfhklLnNrtvV19 ] [-S suffix] [ name ... ]
以下に示す引数を gzip コマンドに指定できる。
$ gzip file1
file1 というファイルを圧縮して、 file1.gz というファイルを作成する。元の file1 というファイルは削除される。
以下に示すオプションを gzip コマンドに指定できる。
$ gzip -c file1 > foo.gz
$ gzip --stdout file1 > foo.gz
$ gzip -S .gzip file1
$ gzip -h
Usage: gzip [OPTION]... [FILE]...
Compress or uncompress FILEs (by default, compress FILES in-place).
Mandatory arguments to long options are mandatory for short options too.
-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
-k, --keep keep (don't delete) input files
-l, --list list compressed file contents
-L, --license display software license
-n, --no-name do not save or restore the original name and timestamp
-N, --name save or restore the original name and timestamp
-q, --quiet suppress all warnings
-r, --recursive operate recursively on directories
--rsyncable make rsync-friendly archive
-S, --suffix=SUF use suffix SUF on compressed files
--synchronous synchronous output (safer if system crashes, but slower)
-t, --test test compressed file integrity
-v, --verbose verbose mode
-V, --version display version number
-1, --fast compress faster
-9, --best compress better
With no FILE, or when FILE is -, read standard input.
Report bugs to <bug-gzip@gnu.org>.
$ gzip -V
gzip 1.10
Copyright (C) 2018 Free Software Foundation, Inc.
Copyright (C) 1993 Jean-loup Gailly.
This is free software. You may redistribute copies of it under the terms of
the GNU General Public License .
There is NO WARRANTY, to the extent permitted by law.
Written by Jean-loup Gailly.
gunzipとは、GZIP形式で圧縮されたファイルを解凍するUnix/Linuxコマンドであり、GNUプロジェクトによって開発されている。なお、GZIP形式はZIP形式と互換性が無い。
gunzip [ -acfhklLnNrtvV ] [-S suffix] [ name ... ]
$ gunzip example.gz
拡張子が .gz の場合は、拡張子の指定を省略できる。
$ gunzip example
以下に示すオプションを gunzip コマンドに指定できる。
$ gzip -h
Usage: gzip [OPTION]... [FILE]...
Compress or uncompress FILEs (by default, compress FILES in-place).
Mandatory arguments to long options are mandatory for short options too.
-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
-k, --keep keep (don't delete) input files
-l, --list list compressed file contents
-L, --license display software license
-n, --no-name do not save or restore the original name and timestamp
-N, --name save or restore the original name and timestamp
-q, --quiet suppress all warnings
-r, --recursive operate recursively on directories
--rsyncable make rsync-friendly archive
-S, --suffix=SUF use suffix SUF on compressed files
--synchronous synchronous output (safer if system crashes, but slower)
-t, --test test compressed file integrity
-v, --verbose verbose mode
-V, --version display version number
-1, --fast compress faster
-9, --best compress better
With no FILE, or when FILE is -, read standard input.
Report bugs to <bug-gzip@gnu.org>.
$ gunzip -V
gzip 1.10
Copyright (C) 2018 Free Software Foundation, Inc.
Copyright (C) 1993 Jean-loup Gailly.
This is free software. You may redistribute copies of it under the terms of
the GNU General Public License .
There is NO WARRANTY, to the extent permitted by law.
Written by Jean-loup Gailly.
Internet Engineering Task Force (1996) RFC 1952 (GZIP file format specification version 4.3)