Windows下是否有诸如wget / curl之类的内置命令行工具?


40

我来自Linux / Unix背景,我一直在想Windows是否具有可以从控制台下载文件的二进制文件。

我想自动化一个特定的过程,这是我的要求之一,即不要安装太多软件,而是尽可能使用内置的东西。

谢谢!


老实说.. wget和curl不是真正的内置命令。
迈克,

1
Windows 8.1,2017年10月
-curl

我没有足够的信誉在此网站上发布答案,但是接受的答案是错误的。实际上,在Windows上有一个开箱即用的替代方法:bitsadmin /transfer myDownloadJob /download /priority normal https://path/to/remote/file.txt c:\path\to\local\file.txt
aaronsteers

Answers:


11

Windows中没有类似内置命令的wget。您可以通过Windows PowerShell使用.net Framework,例如以下示例:

https://superuser.com/questions/362152/native-alternative-to-wget-in-windows-powershell

或像我一样在Windows上使用wget:

http://gnuwin32.sourceforge.net/packages/wget.htm


1
谢谢!我希望有一个本机二进制文件,但是...到底是什么!:D
carlspring

Windows的wget的gnu版本有一个主要错误,该错误使它在下载大文件时崩溃。
Juan Jimenez

我没有足够的信誉在此网站上发布答案,但是接受的答案是错误的。实际上,在Windows上有一个开箱即用的替代方法:bitsadmin /transfer myDownloadJob /download /priority normal https://path/to/remote/file.txt c:\path\to\local\file.txt
aaronsteers



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.