在Linux中,使用unzip命令可以解压zip文件到当前目录。可以按照以下步骤进行操作:
打开终端。
导航到zip文件所在的目录,使用cd
命令切换目录。例如,如果zip文件在桌面上,可以使用以下命令切换到桌面目录:
cd ~/Desktop
unzip filename.zip
将filename.zip
替换为你要解压的zip文件名。
注意:
unzip -P password filename.zip
将password
替换为你设置的密码。
-d
选项指定目标目录。例如:unzip filename.zip -d /path/to/destination
将/path/to/destination
替换为你想要解压到的目标目录的路径。