Linux之zip压缩

1.压缩

对于test目录,使用

zip -rq test.zip test

r表示递归压缩,q表示不显示过程

2.解压缩

unzip -q test.zip

原文地址:https://www.cnblogs.com/huangshiyu13/p/7196309.html