Linux 命令行使用代理设置 - xd21303/Notebook GitHub Wiki
临时代理设置
export http_proxy=socks5://127.0.0.1:1080
export https_proxy=socks5://127.0.0.1:1080
export ALL_PROXY=socks5://127.0.0.1:1080
永久代理设置
将代理命令写入配置文件 ~/.profile 或 ~/.bashrc 或 ~/.zshrc 中:
# SOCKS5 代理设置
export http_proxy=socks5://127.0.0.1:1080
export https_proxy=socks5://127.0.0.1:1080
export ALL_PROXY=socks5://127.0.0.1:1080
代理排除设置
export no_proxy="localhost, 127.0.0.1, ::1, 60.60.60.*"