要解壓一個zip文件到指定的目錄,可以使用以下命令:
unzip file.zip -d /path/to/directory
其中,file.zip 是要解壓的zip文件,/path/to/directory 是要解壓到的目標目錄。使用 -d 選項可以指定解壓到的目錄。
另外,如果zip文件中包含多個文件,可以使用通配符 * 來解壓所有文件到目標目錄:
unzip file.zip -d /path/to/directory/*
如果你的系統中沒有安裝unzip程序,可以通過以下命令安裝:
sudo apt install unzip # 對于Debian/Ubuntu系統
sudo yum install unzip # 對于CentOS/RHEL系統