curl
帮助列表
1 | 在以下选项中,(H) 表示仅适用 HTTP/HTTPS ,(F) 表示仅适用于 FTP |
Curl 设置代理
1 | curl --proxy 127.0.0.1:80 http://www.google.comp |
Wget
Wget 帮助列表
1 | GNU Wget 1.14,非交互式的网络文件下载工具。 |
wget 添加代理
方法一
为wget使用代理,可以直接修改/etc/wgetrc,也可以在主文件夹下新建.wgetrc,并编辑相应内容。
将/etc/wgetrc中与proxy有关的几行复制到~/.wgetrc,并做如下修改:1
2
3
4
5#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/
1 | # If you do not want to use proxy at all, set this to off. |
这里 use_proxy = on 开启了代理,如果不想使用代理,每次都修改此文件未免麻烦,我们可以在命令中使用-Y参数来临时设置:
1 | -Y, --proxy=on/off 打开或关闭代理 |
方法二
wget -e “http_proxy=http://127.0.0.1:8087“ http://www.subversion.org