Windows-Server-2008
如何通過http命令行下載文件?
我需要從 Windows Server 2008 上的命令行通過 http 下載文件。我正在尋找類似wget的東西,但它必須是內置工具。
有這樣的工具嗎?
如果您安裝了 PowerShell…
(New-Object System.Net.WebClient).DownloadFile("http://icanhazip.com/","icanhazip.txt")
你也使用 curl: http ://curl.haxx.se/docs/manpage.html
就像是
curl -O http://domain.com/file.gz
應該管用