如何在命令行里应用shadowsocks或者v2rayn的代理呢?

http

  • linux:
export http_proxy=http://127.0.0.1:1087;export https_proxy=http://127.0.0.1:1087;
  • window:
set http_proxy=http://127.0.0.1:1087;set https_proxy=http://127.0.0.1:1087;

socks(socks5)

  • linux:
export http_proxy=socks5://127.0.0.1:10808export https_proxy=socks5://127.0.0.1:10808
  • window:
# 应用sock5代理set http_proxy=socks5://127.0.0.1:10808set https_proxy=socks5://127.0.0.1:10808

勾销代理

  • linux:
unset http_proxyunset https_proxy
  • window:
set http_proxy=set https_proxy=

git独自设置

git config --global http.proxy 'socks5://127.0.0.1:10808' git config --global https.proxy 'socks5://127.0.0.1:10808'# 勾销git config --global --unset http.proxygit config --global --unset https.proxy

附:

1.shadowsocks命令复制

2.v2rayn端口查看

3.通过主机IP代理