在Linux中有个zip文件,通过unzip -l 看到的形式大体如下: 0 08-04-11 16:13 CRNC032_N3C/ 595869 08-04-11 15:05 CRNC032_N3C/A20110804.0645-0700_1.xml.gz 0 08-04-11 16:13 CRNC033_N3C/ 630220 08-04-11 15:05 CRNC033_N3C/A20110804.0645-0700_1.xml.gz 0 08-04-11 16:13 CRNC034_N3C/ 651655 08-04-11 15:05 CRNC034_N3C/A20110804.0645-0700_1.xml.gz 0 08...
by youngbit007 - Linux新手园地 - 2011-09-09 14:15:11 阅读(2420) 回复(6)
$ unzip hpia64_11gR1_database_1of2.zip.zip Archive: hpia64_11gR1_database_1of2.zip.zip End-of-central-directory signature not found. Either this file is not a zipfile, or it constitutes one disk of a multi-part archive. In the latter case the central directory and zipfile comment will be found on the last disk(s) of this archive. unzip: cannot find zipfile directory in one of hpia64_11...
用unzip命令解压zip包 意向的结果: 1、不需要交互 unzip -o 可以实现 2、从解压结果中捕捉信息(覆盖了几个文件?新增了几个文件或文件夹?) 将一个zip包解压覆盖到一个文件夹中,怎么才能实现第二步呢?
$ which unzip /u01/app/oracle/product/10.2.0/jde/bin/unzip $ ls -l total 782 -rwxrwxrwx 1 oracle oinstall 239416 Jul 4 11:58 unzip -rwxrwxrwx 1 oracle oinstall 159812 Jul 4 11:58 zip $ unzip sh: unzip: Execute permission denied 这是为什么啊?另一台机子unzip可以用的,这台的unzip是那台可以用的拷贝过来的
linux unzip 命令详解 功能说明:解压缩zip文件 语 法:unzip [-cflptuvz][-agCjLMnoqsVX][-P ][.zip文件][文件][-d ][-x ] 或 unzip [-Z] 补充说明:unzip为.zip压缩文件的解压缩程序。 参 数: -c 将解压缩的结果显示到屏幕上,并对字符做适当的转换。 -f 更新现有的文件。 -l 显示压缩文件内所包含的文件。 -p 与-c参数类似,会将解压缩的结果显示到屏幕上,但不会执行任何的转换。 -t 检查压缩文件是否正确。 -u 与-f参...
我在windows下面建立文件“测试.txt”,然后利用rar压缩成“测试.zip”传送到Linux系统上,使用unzip解压缩出来变成了????.txt,不管怎么改语言环境都是不行,我也google了,有的说修改unzip源代码重新编译,我试过了还是不行,请问如何才能解压出正确的文件名呢?
功能说明:解压缩zip文件 语 法:unzip [-cflptuvz][-agCjLMnoqsVX][-P ][.zip文件][文件][-d ][-x ] 或 unzip [-Z] 补充说明:unzip为.zip压缩文件的解压缩程序。 参 数: -c 将解压缩的结果显示到屏幕上,并对字符做适当的转换。 -f 更新现有的文件。 -l 显示压缩文件内所包含的文件。 -p 与-c参数类似,会将解压缩的结果显示到屏幕上,但不会执行任何的转换。 -t 检查压缩文件是否正确。 -u 与-f参数类似,但是除了更新现...
常用命令: sudo unzip -o lumaqq_2005_patch_2006.02.02.15.00.zip -d /usr/share/LumaQQ/lib (QQ补丁的安装) linux unzip 命令详解 功能说明:解压缩zip文件 语 法:unzip [-cflptuvz][-agCjLMnoqsVX][-P ][.zip文件][文件][-d ][-x ] 或 unzip [-Z] 补充说明:unzip为.zip压缩文件的解压缩程序。 参 数: -c 将解压缩的结果显示到屏幕上,并对字符做适当的转换。 -f 更新现有的文件。 -l 显示压缩文件内所包含的文件。...
zip 和 unzip 要使用 zip 来压缩文件,在 shell 提示下键入下面的命令: zip -r filename.zip filesdir 在这个例子里,filename.zip 代表你创建的文件,filesdir 代表你想放置新 zip 文件的目录。-r 选项指定你想递归地(recursively)包括所有包括在 filesdir 目录中的文件。 要抽取 zip 文件的内容,键入以下命令: unzip filename.zip 你可以使用 zip 命令同时处理多个文件和目录,方法是将它们逐一列出,并用空格间隔: zip -...