Linux终端走本地代理端口

April 4, 2020
1
2
3
4
alias HTTP_PROXY=" export  http_proxy=http://localhost:1087"
alias HTTPS_PROXY="export https_proxy=http://localhost:1087"
alias UN_HTTP_PROXY="unset http_proxy"
alias UN_HTTPS_PROXY="unset https_proxy"