当前位置:  开发笔记 > 编程语言 > 正文

从Windows控制台运行cURL命令

如何解决《从Windows控制台运行cURL命令》经验,为你挑选了9个好方法。

有没有办法在Windows中安装cURL才能从命令提示符运行cURL命令?



1> Gabriel Ščer..:

如果您不是Cygwin,则可以使用本机Windows构建.有些在这里:卷曲下载向导.


你可以安装`Git`并使用git bash.安装后内置.(见下面的答案).

2> Ricardo Sanc..:

首先,您需要下载cURL可执行文件.对于Windows 64位,下载它从这里和Windows支持32位的下载从这里 之后,保存curl.exe您的文件C:驱动器.

要使用它,只需打开command prompt并输入:

C:\curl http://someurl.com



3> BRogers..:

如果你已经Git安装在Windows上,你可以使用GNU Bash它内置的....

https://superuser.com/questions/134685/run-curl-commands-from-windows-console/#483964


这意味着您可以像运行OSX或Linux一样运行它,而无需使用特殊命令btw.刚开始`Git Bash`和cURL :)
这个答案需要更多的赞成.对于习惯使用mac终端或unix发行版的用户来说,这是一种方法.

4> matty..:

那些不需要curl可执行文件的人,而只需要一次又一次地查看或保存GET请求的结果,可以powershell直接使用.从正常的命令提示符处,键入:

powershell -Command "(new-object net.webclient).DownloadString('http://example.com')"

虽然有点罗嗦,但与打字类似

curl http://example.com/

在更加Unix的环境中.

有关更多信息,net.webclient请访问:WebClient方法(System.Net).

更新:我喜欢ImranHafeez在这个答案中更进了一步.我更喜欢更简单的cmd脚本,但是,可能会创建一个curl.cmd包含以下内容的文件:

@powershell -Command "(new-object net.webclient).DownloadString('%1')"

可以像上面的Unix-ish示例一样调用它:

curl http://example.com/



5> Helen..:

如果使用Chocolatey包管理器,则可以通过从命令行或从PowerShell运行此命令来安装cURL:

choco install curl



6> 小智..:

在Windows中创建批处理文件,并在Windows中使用cURL享受:)

@echo off
echo You are about to use windows cURL, Enter your url after curl command below:
set /p input="curl "
cls
echo %input%
powershell -Command "(new-object net.webclient).DownloadString('%input%')"
pause



7> vladkras..:

    访问下载页面https://curl.haxx.se/download.html - 这太不可思议了

    在列表中选择您的系统

    不要忘记SSL支持,现在很明显,例如对于https

    解压curl.exe.crtC:\Windows\System32

    重启cmd

    请享用 > curl https://api.stackexchange.com

ps如果您希望另一个文件夹存储可执行文件检查您的路径 > echo %PATH%



8> 小智..:

如果你要从http://curl.haxx.se/dlwiz/?type=bin&os=Win64&flav=MinGW64 - 64BIT Win7/XP或者http://curl.haxx下载它,它应该可以正常工作. se/dlwiz /?type = bin&os = Win32&flav = - &ver = 2000%2FXP --- FOR 32BIT Win7/XP只需将文件解压缩到c:/ Windows并从cmd运行它

C:\Users\WaQas>curl -v google.com
* About to connect() to google.com port 80 (#0)
*   Trying 173.194.35.105...
* connected
* Connected to google.com (173.194.35.105) port 80 (#0)
> GET / HTTP/1.1
> User-Agent: curl/7.28.1
> Host: google.com
> Accept: */*
>
* HTTP 1.0, assume close after body
< HTTP/1.0 301 Moved Permanently
< Location: http://www.google.com/
< Content-Type: text/html; charset=UTF-8
< Date: Tue, 05 Feb 2013 00:50:57 GMT
< Expires: Thu, 07 Mar 2013 00:50:57 GMT
< Cache-Control: public, max-age=2592000
< Server: gws
< Content-Length: 219
< X-XSS-Protection: 1; mode=block
< X-Frame-Options: SAMEORIGIN
< X-Cache: MISS from LHR-CacheMARA3
< X-Cache-Lookup: HIT from LHR-CacheMARA3:64003
< Connection: close
<

301 Moved

301 Moved

The document has moved here. * Closing connection #0



9> 小智..:

为Windows安装Git,然后使用git bash运行curl命令。

推荐阅读
个性2402852463
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有