unzip /home/test.zip -d /home/xxx/ #解压到目标文件夹
zip test.zip test.txt #它会将 test.txt文件压缩为test.zip,当然也可以指定压缩包的目录,例如 /root/test.zip
**压缩
**
zip -r 文件夹.zip 文件夹
**解压
**
unzip 文件夹.zip -d 文件夹
unzip file.zip //解压zip
解压不了的时候 要安装支持ZIP的工具
[root@wenhuayunApplet www]# unzip wenhuayunApplet.zip
-bash: unzip: command not found
zip
命 令 | 作 用 |
---|---|
zip 1.txt.zip 1.txt | 压缩 |
zip -r 123.zip 123/ | 压缩目录 |
unzip 1.txt.zip | 解压 |
unzip 123.zip -d /root/456/ | 解压缩到指定目录下 |
unzip -l 123.zip | 列出压缩文件所包含的内容 |
和gzip、bzip2和xz不同的是,使用zip压缩后,保留原文件。不能更改压缩后的压缩包名称。不能直接查看zip压缩包的内容,只能查看压缩包内文件列表。
tar
tar命令是Unix/Linux系统中备份文件的可靠方法,几乎可以工作于任何环境中,它的使用权限是所有用户。它主要是用来对文件打包。
命 令 | 作 用 |
---|---|
tar -cvf 123.tar 123 | 打包单个文件 |
tar -cvf 123.tar 1.txt 123 | 打包多个文件 |
tar -xvf 123.tar | 解包 |
tar -tf 123.tar | 查看打包文件列表 |
tar -cvf 123.tar —exclude 1.txt —exclude 23 | 打包时部分文件不打包 |
使用tar命令还可以做打包并压缩:
命 令 | 作 用 |
---|---|
tar -zcvf 123.tar.gz 123 | 打包并压缩成gzip压缩包 |
tar -zxvf 123.tar.gz | 解包并解压缩gzip压缩包 |
tar -jcvf 123.bz2 123 | 打包并压缩成bzip2压缩包 |
tar -jxvf 123.bz2 | 解包并解压缩bzip2压缩包 |
tar -Jcvf 123.xz 123 | 打包并压缩成xz压缩包 |
tar -Jxvf 123.xz | 解包并解压缩xz压缩包 |
tar -tf 123.bz2/123.gz/123.xz | 查看压缩包文件列表 |