> For the complete documentation index, see [llms.txt](https://mm.ricky.moe/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mm.ricky.moe/other/linux/mac-zhong-duan-dai-li.md).

# Mac终端代理

```bash
$ vim ~/.zshrc
添加配置，设置/清除代理
alias proxy_on='export ALL_PROXY=socks5://127.0.0.1:1080'
alias proxy_off='unset ALL_PROXY'
生效
$ source ~/.zshrc
检查
$ curl -i http://ip.cn 或者
$ curl -i cip.cc
```
