在Ubuntu中解壓zip文件可以通過以下命令實現:
unzip file.zip
這將會解壓名為file.zip的zip文件到當前目錄下。如果需要將文件解壓到特定目錄下,可以使用以下命令:
unzip file.zip -d /path/to/directory
這將會將文件解壓到指定的目錄下。