赞
踩
移动开发有时需要设置代理,不然太慢。
在终端中输代码即可显示隐藏文件。
defaults write com.apple.finder AppleShowAllFiles -boolean true;killall Finder
再次隐藏文件,可以输入命令。
defaults write com.apple.finder AppleShowAllFiles -boolean false;killall Finder
1. 进入当前用户的home目录:
cd ~/
2. 创建.bash_profile文件:或者.zshrc文件
touch .bash_profile
touch .zshrc
3. 打开.bash_profile并编辑:或者打开编辑.zshrc
open .bash_profile
open .zshrc
4. 这样就打开了一个记事本,会显示你之前配置过的path,修改记事本,强烈建议先备份下,然后根据自己需要配置。
在~/.bash_profile 文件中(此文件可能没有,没有就创建一个)添加如下代码
其中的 http_proxy 是ss自己设置的本地代理,不是我们买的外面的代理地址,一般都是如下面代码所示,一般不用改。
端口的话 有可能不是1087,这个要看本地服务的HTTP代理端口了
- function proxy_off(){
- unset http_proxy
- unset https_proxy
- unset ftp_proxy
- unset rsync_proxy
- echo -e "已关闭代理"
- curl cip.cc
- }
-
- function proxy_on() {
- export no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
- export http_proxy="http://127.0.0.1:1080"
- export https_proxy=$http_proxy
- export ftp_proxy=$http_proxy
- export rsync_proxy=$http_proxy
- export HTTP_PROXY=$http_proxy
- export HTTPS_PROXY=$http_proxy
- export FTP_PROXY=$http_proxy
- export RSYNC_PROXY=$http_proxy
- echo -e "已开启代理"
- curl cip.cc
- }
- source ~/.bash_profile
然后执行source ~/.bash_profile 使其立刻生效
使用时需要打开ss全局模式,然后打开终端
只需要输入proxy_on就会启动
curl cip.cc
开启代理:
proxy_on
关闭代理:
proxy_off
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。