https://www.cnblogs.com/zdz8207/p/3765604.html
zip常用:
1.解压zip文件到当前目录
unzip filename.zip
2.unzip -o -d /home/sunny myfile.zip
把myfile.zip文件解压到 /home/sunny/
-o:不提示的情况下覆盖文件;
-d:-d /home/sunny 指明将文件解压缩到/home/sunny目录下;
tar常用:
1.tar –xvf file.tar //解压 tar包
t2.ar -xzvf file.tar.gz //解压tar.gz
3.tar -xjvf file.tar.bz2 //解压 tar.bz2
4.tar –xZvf file.tar.Z //解压tar.Z