0%

环境配置

homebrew 代理

在 bash 环境变量中配置:

1
alias brews='all_proxy=socks5://127.0.0.1:1086 brew '

pwdx

在 bash 环境变量中配置:

1
function pwdx()   { L=$(lsof -a  -d cwd -p $1 | tail -1); echo /${L#*/}; }

tailf

在 bash 环境变量中配置:

1
alias tailf='tail -f'

sed

在 bash 环境变量中配置:

1
alias sed=gsed