7zip7z has open architecture, so it can support any new compression methods. Now the following methods are integrated to 7z:LZMAImproved and optimized version of LZ77 algorithmPPMDDmitry Shkarin's PPM...
方法很多种, 根据实际文件类型,位置情况进行变通:1. for查询:for tar in *.tar.gz; do tar xvf $tar; done2. 列出文件列表,然后xargs 逐一解压:ls *.tar.gz | xargs -n1 tar xzvf3. 用find 条件查找(目录1层...