如何配置 wget 代理


在开了全局代理的情况下,wget 与 git 一样,也需要再配置代理

方法一:参数设置

wget -e http_proxy=127.0.0.1:1089 google.com



--2020-03-01 11:53:55--  http://google.com/

Connecting to 127.0.0.1:1089... connected.

Proxy request sent, awaiting response... 301 Moved Permanently

Location: http://www.google.com/ [following]

--2020-03-01 11:53:57--  http://www.google.com/

Reusing existing connection to 127.0.0.1:1089.

Proxy request sent, awaiting response... 200 OK

Length: unspecified [text/html]

Saving to: ‘index.html’



index.html                               [ <=>                                                                 ]  12.56K  --.-KB/s    in 0s



2020-03-01 11:54:01 (160 MB/s) - ‘index.html’ saved [12863]

方法二:配置文件设置

进入目录

cd ~

创建.wgetrc配置文件

n vim .wgetrc

设置代理

http_proxy = http://your_proxy:port

https_proxy = http://your_proxy:port

proxy_user = user

proxy_password = password

use_proxy = on

wait = 15


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM