日期:2014-05-16  浏览次数:20824 次

linux下批量解压缩的方法

解压当前目录下所有后缀为tgz的文件:

find -maxdepth 1 -name "*.tgz"|xargs -i tar zxvf {}

?