curl如何使用socks5做代理

Posted by D on February 15, 2020

参考:How to Use Socks5 Proxy in Curl

如果你要使用本机的1080端口做代理那么命令如下:
curl 版本 >= 7.21.7使用如下命令:

curl -x socks5h://localhost:1080 http://www.google.com/

curl 版本 >= 7.18.0使用如下命令:

curl --socks5-hostname localhost:1080 http://www.google.com/

比如需要下载 v2ray它本身下载命令如下:

bash <(curl -L -s https://install.direct/go.sh)

则把命令改为:

bash <(curl -L -s -x socks5h://localhost:1080 https://install.direct/go.sh)
: