我想解压缩为其他文件名


14

好的,我需要提取一个名为“ example.zip”的zip存档,但我想将其提取为其他文件名,而不是“ example”作为我的文件夹名称,我该如何使用名为“ example.zip”的解压缩来提取一个zip存档并将其提取为文件夹名称“ examplefold”

Answers:


15

默认情况下,unzip将存档的内容直接提取到当前目录中。

您可以使用以下-d选项指定将文件解压缩到的其他目标目录:

unzip example.zip -d /path/to/wherever/you/want/the/archive/to/get/extracted

或者,如果归档文件本身包含example您要提取到当前目录但名称不同的文件夹,则必须手动将其重命名为examplefold之后:

unzip example.zip && mv example examplefold

6
如果已经存在一个example文件夹,那么这行得通吗?
alhelal
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.