当前位置:网站首页>为wget命令设置代理
为wget命令设置代理
2020-11-09 11:37:00 【xxjbs001】
为wget命令设置代理
实验环境:ubuntu 12.04 LTS goagent
方法一、在环境变量中设置代理
export http_proxy=http://127.0.0.1:8087
方法二、使用配置文件
为wget使用代理,可以直接修改/etc/wgetrc,也可以在主文件夹下新建.wgetrc,并编辑相应内容,本文采用后者。
将/etc/wgetrc中与proxy有关的几行复制到~/.wgetrc,并做如下修改:
#You can set the default proxies for Wget to use for http, https, and ftp.
# They will override the value in the environment.
https_proxy = http://127.0.0.1:8087/
http_proxy = http://127.0.0.1:8087/
ftp_proxy = http://127.0.0.1:8087/
# If you do not want to use proxy at all, set this to off.
use_proxy = on
这里 use_proxy = on 开启了代理,如果不想使用代理,每次都修改此文件未免麻烦,我们可以在命令中使用-Y参数来临时设置:
-Y, --proxy=on/off 打开或关闭代理
方法三、使用-e参数
wget本身没有专门设置代理的命令行参数,但是有一个"-e"参数,可以在命令行上指定一个原本出现在".wgetrc"中的设置。于是可以变相在命令行上指定代理:
-e, --execute=COMMAND 执行`.wgetrc'格式的命令
例如:
wget -c -r -np -k -L -p -e "http_proxy=http://127.0.0.1:8087" http://www.subversion.org.cn/svnbook/1.4/
这种方式对于使用一个临时代理尤为方便。
注: 如果是https,则参数为:-e "https_proxy=http://127.0.0.1:8087"
使用https时如果想要忽略服务器端证书的校验,可以使用 -k 参数。
版权声明
本文为[xxjbs001]所创,转载请带上原文链接,感谢
https://my.oschina.net/xxjbs001/blog/4709094
边栏推荐
猜你喜欢
EFF 认为 RIAA 正在“滥用 DMCA”来关闭 YouTube-DL
AI应届生年薪涨到40万了,你现在转行还来得及!
微信圈子
range_sensor_layer
ThinkPHP门面源码解析
Open source projects for beginners on GitHub (Python)
GitHub 上适合新手的开源项目(Python 篇)
微信视频号播主排行榜2020年10月
Understanding data structures starts with this article~
Application of cloud gateway equipment on easynts in Xueliang project
随机推荐
Recommendation system, in-depth paper analysis gbdt + LR
理解 OC 中 RunLoop
050_ object-oriented
Fedora 33 Workstation 的新功能
ThinkPHP门面源码解析
SQL Chapter 2 Chapter 3
Elasticsearch原理解析与性能调优
详解Python input()函数:获取用户输入的字符串
“微服务”技术另一个可能更合适的名字
Source code analysis of ThinkPHP framework execution process
When Python calls ffmpeg, 'ffmpeg' is not an internal or external command, nor a runnable program
共创爆款休闲游戏 “2020 Ohayoo游戏开发者沙龙”北京站报名开启
抢球鞋?预测股市走势?淘宝秒杀?Python表示要啥有啥
Commodity management system -- implementation of local preservation of new commodities
[design pattern] Chapter 4: Builder mode is not so difficult
再读《重构》
上周热点回顾(11.2-11.8)
LTM understanding and configuration notes
Five indispensable open source tools for me
Git delete IML file