linux下压缩-解压命令

unzip topo-app.zip -d topo-app     //解压文件至 指定目录

zip -r topo-app.zip /topo-app/*    //压缩文件中含有topo-app目录

cd topo-app zip -r topo-app.zip *              //压缩文件中没有topo-app目录

tar -xzvf eSightback.tar.gz -C /opt/eSightback

unzip -v **.zip 查看压缩文件目录,但不解压。

unzip -t **.zip 测试文件有无损坏,但不解压。

原文地址:https://www.cnblogs.com/haifeisi/p/3377709.html