# tar -xf all.tar
这条命令是解出all.tar包中所有文件,-x是解开的意思
zip 压缩方法:
linux zip命令参数列表:
-a 将文件转成ASCII模式
-F 尝试修复损坏的压缩文件
-h 显示帮助界面
-m 将文件压缩之后,删除源文件
举例:
zip –q –r xahot.zip /home/wwwroot/xahot
zip –q –r xahot.zip xahot
zip –q –r xahot.zip *
以上是在安静模式下进行的,而且包含系统文件和隐含文件
//
unzip语 法:
unzip [-cflptuvz][-agCjLMnoqsVX][-P <密码>][.zip文件][文件][-d <目 录>][-x <文件>] 或 unzip [-Z]
补充说明:unzip为.zip压缩文件的解压缩程序。
举例:
unzip xahot.zip
如果出现这个提示:
-bash: zip: command not found 不能执行ZIP压缩,是因为没有安装ZIP,
运行下这条安装命令即可 yum install zip
(ubuntu用apt命令)