我在我的工作环境中使用git bash作为我的命令行界面。
Windows 8.1是否有wget
命令?
答案 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
这是实践中的样子:
-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.htm或https://eternallybored.org/misc/wget/下载Windows的wget
2)从cygwin.com下载安装cygwin并安装wget包
3)从curl.haxx.se中获取类似于curl for windows的工具
答案 3 :(得分:0)