我正在使用 Linux 并遇到了 gzip < my file.gzip >,我想知道它的作用。有人能告诉我它有什么作用吗?
答案1
和<
是>
shell 结构。< file.txt
均值file.txt
视为输入,> file.txt
均值file.txt
视为输出。该命令可能是这样的:
% gzip < input.gz > output.txt
这将采用 gzipped(压缩)输入文件input.gz
并将未压缩版本写为output.txt
.它可能不是文本文件。
希望这可以帮助。
答案2
你尝试过跑步吗gzip --help
?这应该可以回答您有关使用的问题。
输出来自gzip --help
:
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 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, --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
--rsyncable Make rsync-friendly archive
With no FILE, or when FILE is -, read standard input.
Report bugs to <[email protected]>.