Io-Redirection

如何捲曲並解壓縮到某個目錄?

  • January 30, 2018

如何捲曲並解壓縮到某個目錄?

您將文件捲曲到標準輸出,然後解壓縮到某個目錄。

unzip(6.00 版)無法提取從標準輸入讀取的文件(這在unzip手冊中的“BUGS”部分中有提及),因此在提取之前需要將文件保存在本地:

curl -o myfile.zip "some URL"
unzip myfile.zip -d "some directory"
rm -f myfile.zip

some directory您要將存檔提取到的目錄在哪裡。

引用自:https://unix.stackexchange.com/questions/420638