首先,安装lzip工具
sudo apt-get install lzip
其次,写个脚本,搜索目录下面的tar.lz文件,进行文件搜索和解压
vi unzip_tar_lz.sh
find -name "*.tar.lz" -exec lzip -d {} \;
find -name "*.tar" -exec tar -xf {} \;
find -name "*.tar" -exec rm -f {} \;
增加权限
chmod a+x unzip_tar_lz.sh
运行
./unzip_tar_lz.sh