Directory
curl 到 stdout 並將 zip 解壓到特定目錄
捲曲到標準輸出,然後
untar
(在這種情況下為 zip 文件)到特定目錄的正確方法是什麼?這失敗了:
curl URL | tar -x > /path
所以我想到了這個也失敗了:
curl URL | tar -x > /path
如何將wget的輸出重定向為解壓縮的輸入?(
wget
並且curl
在這種情況下可以互換)。請看這個答案。在這裡複製它:wget URL -O path/temp.zip; unzip -d path path/temp.zip; rm path/temp.zip
URL
並相應地替換path
。