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.
我有一个包含两个文件的 tar 文件。
文件.tar.gz
该文件包括:
file_1.fastq
文件_2.fastq
我想解压缩原始文件并使用一个命令直接 gzip 解压缩文件并具有以下文件:
文件_1.fastq.gz
文件_2.fastq.gz
有没有办法做到这一点?
谢谢
厄桑
该命令将是这样的,作为一个脚本:
mkdir temp cd temp tar xzf ../file.tar.gz gzip * mv * .. cd .. rmdir temp