幸福飞过海 - wget https://fengqi.me/tag/wget/ [总结]利用 Privoxy 让命令行下的 wget 和 curl 等命令实现自动代理 https://fengqi.me/unix/328.html 2015-01-23T07:30:00+00:00 curl 和 wget 都可以通过附带参数来使用代理curl -x http://127.0.0.1:8087 github.com wget -e "http_proxy=127.0.0.1:8087" github.com 临时用用还好,但是经常使用也就麻烦了,可以通过配置文件简化shell> cat ~/.wgetrc https_proxy = http://127.0.0.1:8087 http_proxy = http://127.0.0.1:8087 ftp_proxy = http://127.0.0.1:8087 use_proxy = on continue = on check_certificate = off shell> cat ~/.curlrc -L proxy = 127.0.0.1:8087 参数解释:[...] wget自动断点续传的方法 https://fengqi.me/unix/43.html 2011-06-20T15:23:00+00:00 有时候我们使用wget下载东西被迫打断, 比如网络故障, 终端意外断开, 忘了加"&"放入该台等等.沉稳的人或许会想到重新开启wget, 并使用 -c断点续传, 可是有时候, 因为N个g的东西突然断了, 一冲动就晕了, 就纠结了, 可能就会就重新跑wget了, 甚至截止到本文还有人不知道-c.那么为了杯具不再发生, 我们可以让wget每次运行的时候自动加上 -c参数, 那样就万事大吉了嘛. 方法如下在家目录下新建文件".wgetrc", 内容如下:continue = on 保存退出, 以后再使用wget就会自动断点续传了, Y, 演示如下:[...]