红联Linux门户
Linux帮助

wget和curl设置代理服务器的命令

发布时间:2016-10-22 10:15:30来源:linux网站作者:xiaobao090251634
一、wget设置代理
eg:
wget -Y on -e "http_proxy=http://10.0.0.172:9201" "www.wo.com.cn"
此命令使用10.0.0.172:9201这个代理服务器IP和端口访问站点www.wo.com.cn
参数说明
-Y  是否使用代理
-e  执行命令
 
二、curl设置代理
eg:
curl -x 10.0.0.172:80 www.wo.com.cn
此命令使用10.0.0.172:80这个代理服务器IP和端口访问站点www.wo.com.cn
参数说明
-x  设置代理,格式为host[:port],port的缺省值为1080
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25277.html