curl Protocol 'http not supported or disabled in libcurl
2024-10-19 03:28:11
C:\Documents and Settings\ganiks.liu\Desktop\curl-7.37.0-win32\bin>curl -V
curl 7.37.0 (i386-pc-win32) libcurl/7.37.0 OpenSSL/1.0.1g zlib/1.2.8 WinIDN libssh2/1.4.3
Protocols: dict file ftp ftps gopher http https imap imaps ldap pop3 pop3s rtsp scp sftp smtp smtps telnet tftp
Features: AsynchDNS GSS-Negotiate IDN IPv6 Largefile NTLM SPNEGO SSL SSPI libz
C:\Documents and Settings\ganiks.liu\Desktop\curl-7.37.0-win32\bin>curl "http://baidu.com"
<html>
<meta http-equiv="refresh" content="0;url=http://www.baidu.com/">
</html>
C:\Documents and Settings\ganiks.liu\Desktop\curl-7.37.0-win32\bin>curl 'http://baidu.com'
curl: (1) Protocol 'http not supported or disabled in libcurl
C:\Documents and Settings\ganiks.liu\Desktop\curl-7.37.0-win32\bin>curl http://baidu.com
<html>
<meta http-equiv="refresh" content="0;url=http://www.baidu.com/">
</html>
好大一个坑,在 windowsXP 系统 CMD 中使用
curl
, 不要对 URL 加引号或者单引号, 要加就加 双引号
最新文章
- 轻量级C#编辑器RoslynPad
- jsp中jstl标签的类似 if - else 语句 的语法
- VIM-Sed常用的一些记录。。。逐渐学习。。
- POJ 1151 Atlantis(线段树-扫描线,矩形面积并)
- 用C语言画一个“爱心”
- day04-java-循环结构(while、do-while、for)
- java8Lambda详解
- HTML5_画布_太阳系
- IE6兼容inline-block的方法
- Hibernate中HQL的日期差值计算,可计算相差多少秒
- Eclipse工程乱码解决
- JSON 数字排序 多字段排序
- 【贪心】【Uva11729】 Commando War
- jenkins部署
- 4.jsp的内置对象
- 初学者入门web前端 C#基础知识:数组与集合
- PAT乙级-1037. 在霍格沃茨找零钱(20)
- 禁止用户打开HTML页面调试
- python中list操作方法
- JDBC最原始的代码做查询操作
热门文章
- 面向对象的 JavaScript
- SQL Server :DBLINK创建及使用
- 获取屏幕分辨率(C/C++)
- linux shell 逻辑运算符、逻辑表达式
- Php中正则小结(一)
- Win7更改默认打开方式失败
- BufferedInputSream和BufferedOutputSream,,,
- Effective C# 学习笔记(原则二:为你的常量选择readonly而不是const)
- 菜鸟学习Spring——60s使用annotation实现简单AOP
- greenDao生成的实体类无法存放JsonArray的解决方法