#やりたいこと
curlにproxy設定をしたい。
#方法
proxy書式: http://ユーザ名:パスワード@サーバ名:ポート
(その1) コマンドに直接指定
$ curl www.yahoo.co.jp -x http://taro:password@192.168.1.1:8080
(その2) ~/.bashrcに設定
$ cat .bashrc
export http_proxy=http://taro:password@192.168.1.1:8080
export https_proxy=http://taro:password@192.168.1.1:8080
(その3) ~/.curlrcに設定
$ cat .curlrc
proxy=http://taro:password@192.168.1.1:8080