Skip to content

Instantly share code, notes, and snippets.

@carmel
Created January 17, 2025 08:32
Show Gist options
  • Save carmel/48bc98969d310274e462da00d5a735bf to your computer and use it in GitHub Desktop.
Save carmel/48bc98969d310274e462da00d5a735bf to your computer and use it in GitHub Desktop.
proxy
# proxy
proxy () {
export http_proxy="http://127.0.0.1:$1"
export https_proxy=$http_proxy
export all_proxy="socks5://127.0.0.1:$1"
echo "HTTP Proxy on"
}
# noproxy
noproxy () {
unset http_proxy
unset https_proxy
unset all_proxy
echo "HTTP Proxy off"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment