代理设置
代理设置
curl curl -I -x “http://172.16.1.90:7890” https://www.google.com curl –socks5 “127.0.0.1:1234” “https://ip.oxylabs.io/" –proxy-user user:pwd
全局设置 export https_proxy=http://172.16.1.90:7890 http_proxy=http://172.16.1.90:7890 all_proxy=socks5://172.16.1.90:7890
……