Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有很多 bunzip2 压缩文件,我想将它们转换为 .gz。我使用管道尝试了以下操作,但它不起作用。我猜原因是 gzip 不知道要压缩哪些文件。
bunzip2 test.txt.bz2 | gzip
有什么方法可以使用管道连接bunzip2和gzip?
bunzip2
gzip
当不带参数运行 gzip 时,它希望将其输出通过管道传输到文件中:
bzcat test.txt.bz2 | gzip -c - >test.txt.gz
为了完整起见,我包括了以下内容(尽管当输入来自标准输入并且输出被重定向或发送到另一个管道时,它们都是可选的):