Skip to content

Instantly share code, notes, and snippets.

@tlikai
Last active December 26, 2016 09:51
Show Gist options
  • Save tlikai/f5b3abbb88f48170500a96468d7c47bf to your computer and use it in GitHub Desktop.
Save tlikai/f5b3abbb88f48170500a96468d7c47bf to your computer and use it in GitHub Desktop.
Proxychain - automatically switch proxy between command
function proxy() {
proxy_on
$@
proxy_off
}
function proxy_on() {
export all_proxy="http://127.0.0.1:1087"
}
function proxy_off() {
unset all_proxy
}
@tlikai
Copy link
Author

tlikai commented Dec 26, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment