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
* * * * * for i in `seq 120`; do awesome_scripts& sleep 0.5; done
由crontab每分钟调度,每次唤起,循环执行120次,间隔0.5秒.
PS: 很有意思的变通啊.
]]>