Skip to content

Instantly share code, notes, and snippets.

@huzhennan
Created September 25, 2017 02:24
Show Gist options
  • Select an option

  • Save huzhennan/b50cd24952a67a6189d95c2a42b0872f to your computer and use it in GitHub Desktop.

Select an option

Save huzhennan/b50cd24952a67a6189d95c2a42b0872f to your computer and use it in GitHub Desktop.
bash shell开启/关闭http proxy
function start_proxy() {
export HTTP_PROXY=http://localhost:56789
export HTTPS_PROXY=http://localhost:56789
}
function stop_proxy() {
export HTTP_PROXY=""
export HTTPS_PROXY=""
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment