Linux 压缩解压 zip tar

zip 压缩命令ip

zip -r -9 test.zip test/ -x=*.tar.gz  test

-r 文件下全部的目录以文件file

- 9 ~1 压缩比文件

-x 排除文件压缩

zip 解压命令tar

unzip test.zip -d unzip_file

-d 指定解压目录

查看压缩包

unzip -l test.zip

 

 

tar 压缩命令

tar -zcf test.tar.gz  test --exclude=*.tar.gz --exclude=test/file -v

-z 以ZIP 方式压缩   (tar.gz)

-j bz 压缩 (.tar.bz2 ..)

-c 建立压缩

-f 压缩文件名 f 后必须是文件名

-- exclude 排除文件 

-v 输出压缩信息

tar 解压

tar -xf test.tar.gz 

查看压缩包信息

tar -tf test.tar.gz