我想下载owncloud到我的ubuntu服务器上,但是解压不了,不认识我的文件,然后文件在,但是不认识。我尝试删除它并重新下载它,但是没有用。
Jaro
Asked:
2019-11-13 04:20:45 +0800 CST
如何将 .zip 文件解压缩到所有包含 .php 文件的目录,其中包含文本“house”?
就像是:
grep -rl --include='index.php' 'house' /directory/path/of_the_index_file* | xargs unzip /directory2/path/file.zip -d /directory/path/of_the_index_file/
澄清:我只是想将一个包含 2 个文件和一个目录的简单 .zip 文件提取到服务器上包含 index.php 文件的所有目录,该文件的代码中包含特定的字符串。
我将非常感谢任何帮助。
Jim6834
Asked:
2019-10-21 10:43:03 +0800 CST
我使用“unzip filename.zip”从脚本中解压缩了一个文件,在终端中我看到了所有解压缩的文件名。我想在不打印这些名称的情况下解压缩文件,以便拥有一个干净的终端界面。
MusTheDataGuy
Asked:
2019-07-03 08:58:11 +0800 CST
我怎样才能实现以下目标?
unzip ./zipped_docs.zip ./new_folder | mkdir ./new_folder
或者
mkdir ./new_folder | unzip ./zipped_docs.zip ./new_folder
我什至试过
mkdir ./new_folder && unzip ./zipped_docs.zip ./new_folder
这些都没有奏效,但想法很明确。
这可能吗?
Ossi Viljakainen
Asked:
2019-02-09 01:53:06 +0800 CST
我定期收到一堆 pdf 作为单个 zip 文件。我想将这些直接发送到打印机。
我找到了一个不错的脚本,它允许使用右键单击上下文菜单将 pdf 直接发送到打印机。
现在我想修改脚本,以便它解压缩文件,然后将 pdf 发送到打印机。我怎样才能做到这一点?
sugab
Asked:
2019-01-17 20:47:42 +0800 CST
我有a.zip
档案。我想提取它,所以当我右键单击目录a
然后单击“在此处提取”时,我的目录“a”包含类似的内容。
是否可以在不先创建目录的情况下复制该 gui 版本?我的意思是这两个步骤:
mkdir a
unzip a.zip -d a
我需要带有参数的单个命令。
Haroon
Asked:
2018-09-22 19:02:50 +0800 CST
Kiran Reddy
Asked:
2018-03-02 01:29:07 +0800 CST
在一个 zip 里面我还有一个 zip 文件
我想要一个命令一次提取所有内容。
wing
Asked:
2017-12-19 00:44:13 +0800 CST
我收到以下错误消息。zip 文件 (5GB) 可能太大
Archive: /home/wing92518/Documents/simulation_set_1_result/replication_1.zip
warning [/home/wing92518/Documents/simulation_set_1_result/replication_1.zip]: 849850736 extra bytes at beginning or within zipfile
(attempting to process anyway)
error [/home/wing92518/Documents/simulation_set_1_result/replication_1.zip]: start of central directory not found;
zipfile corrupt.
(please check that you have transferred or created the zipfile in the
appropriate BINARY mode and that you have compiled UnZip properly)