Command-Line-Interface

如何讓 curl 將文件保存到指定目錄?

  • May 15, 2014

我試圖讓 curl 使用腳本下載文件並將其保存到某個目錄。我下載了它,但我不知道如何從腳本中將它下載到某個目錄。它通常只是將其保存到目前工作目錄。

curl http://google.com > /path/to/dir/index.html

更正:

您可以使用

-o, –output FILE 將輸出寫入而不是標準輸出

curl --url https://google.com --output /any/file-location

引用自:https://serverfault.com/questions/166874