在 Linux 中提取所有 gzip 文件的脚本

在 Linux 中提取所有 gzip 文件的脚本

我的 Linux 服务器中的所有文件都转换为 gzip 文件,我需要一个脚本来提取所有 gzip 文件(*.gz 文件)

答案1

$ find /path/to/files -name "*.gz" -print0 | xargs -0 gunzip

相关内容