Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Post]在终端(Terminal)中快捷使用代理的方法 #216

Open
hughfenghen opened this issue Jan 22, 2025 · 1 comment
Open

[Post]在终端(Terminal)中快捷使用代理的方法 #216

hughfenghen opened this issue Jan 22, 2025 · 1 comment
Labels

Comments

@hughfenghen
Copy link
Owner

https://hughfenghen.github.io/posts/2025/01/22/proxy-switch-cli/

@image72
Copy link

image72 commented Feb 27, 2025

px () {
green=$(tput setaf 64);
red=$(tput setaf 124);
reset=$(tput sgr0);
UTC_TIME="$(date +"%Y-%m-%d %H:%M:%S")"
PORT=${1:-7890}
if [ ! -z "$http_proxy" ]
then
echo $UTC_TIME
echo "http_proxy already set, ${red}unset now${reset}"
# unset http_proxy;
# unset https_proxy;
unset {http,https,ftp,all}_proxy;
else
echo $UTC_TIME
export http_proxy=http://127.0.0.1:$PORT;
export https_proxy=http://127.0.0.1:$PORT;
echo "set http_proxy to ${green}$(echo $http_proxy)${reset}"
fi
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants