相当于Windows 8.1的wget命令行

时间:2015-10-27 09:57:45

标签: command-line-interface windows-8.1 wget git-bash

我在我的工作环境中使用git bash作为我的命令行界面。

Windows 8.1是否有wget命令?

4 个答案:

答案 0 :(得分:7)

您可以使用curl而不是wget。

curl http://www.google.com/

答案 1 :(得分:3)

Windows 8.1 PowerShell同时具有wget和curl命令。

两者的表现完全相同,就好像它们是彼此的同义词一样。

示例 - 检索http://www.sdsolarblog.com/montage/show.html

PS C:/users/Admin> curl http://www.sdsolarblog.com/montage/show.html

PS C:/users/Admin> wget http://www.sdsolarblog.com/montage/show.html

这是实践中的样子:

enter image description here

要下载整个原始文件,您要添加-outfile选项,如下所示:

PS C:/users/Admin> curl http://www.sdsolarblog.com/montage/show.html -outfile show.html

答案 2 :(得分:1)

您可以直接下载wget for windows
1)从http://gnuwin32.sourceforge.net/packages/wget.htmhttps://eternallybored.org/misc/wget/下载Windows的wget 2)从cygwin.com下载安装cygwin并安装wget包
3)从curl.haxx.se中获取类似于curl for windows的工具

答案 3 :(得分:0)