linux下 批量压缩与批量解压 批量压缩文件 ls |xargs -ti tar -zcvf {}.tar.gz {} 批量解压文件 ls *.tar.gz|xargs -n1 tar -zxvf ...