2013-07-23 54 views
3

我不明白如何阅读此一般语法。我想通过我们的代理请求一个URL,它需要一个特定的主机,端口,用户名和密码。我不知道如何弄清楚协议是什么。 我想通过代理来卷曲。根据下面的帮助文件,我猜想该行应该是:通过代理语法卷曲

curl -x [whatever-my-protocol-is://] my-host-which-i-know [:my-port-which-我知道] - ü我的用户名,这是我知道[:我的通过这是我知道] http://www.google.com

是这样吗?我如何弄清楚协议?从人

相关信息:

-x, --proxy [PROTOCOL://]HOST[:PORT] Use proxy on given port 
    --proxy-anyauth Pick "any" proxy authentication method (H) 
    --proxy-basic Use Basic authentication on the proxy (H) 
    --proxy-digest Use Digest authentication on the proxy (H) 
    --proxy-negotiate Use Negotiate authentication on the proxy (H) 
    --proxy-ntlm Use NTLM authentication on the proxy (H) 
-U, --proxy-user USER[:PASSWORD] Proxy user and password 
    --proxy1.0 HOST[:PORT] Use HTTP/1.0 proxy on given port 

解决:忽略 “[” 阅读一般语法时。另外,Windows喜欢双引号和单引号。所以命令是: curl -x my-host-which-i-know:my-port-which-i-know -U my-username-which-i-know:my-pass-which-i-know http://www.google.com

回答

5

求助:在阅读一般语法时忽略"["。另外,Windows喜欢双引号和单引号。

所以命令是:

curl -x my-host-which-i-know:my-port-which-i-know -U my-username-which-i-know:my-pass-which-i-know http://www.google.com