mac常见问题和命令
mac 下一些常用问题和命令
curl ip.cn 查看当前 ip 地址信息 proxy zsh 下打开代理,只对当前窗口有效,之前需 source .zshrc unproxy zsh 下关闭代理
brew list install uninstall
查看端口冲突
- lsof -i:端口号
- kill 端口号
mac 上 80 端口冲突
- 使用 sudo
删除一个文件夹(不论文件夹是否为空)
rm -rf 文件夹
打开 Devtools
- Command+Opiton+I
查看隐藏文件
- command+shift+.
根目录下修改.zshrc
配置结束 source .zshrc
zsh 代理
根目录下修改.zshrc
查看翻墙的高级设置本地 socks5 监听地址 && 监听端口
配置结束 source .zshrc
webpack 默认全局路径
/usr/local/lib/node_modules/确定 npm 安装的全局路径
npm root -g'~'和'/'区别
/是根目录,~是用户的家目录
zsh 下 git 命令 abort 或者超时、给 git 设置代理
zsh 设置 proxy 和 unproxy 函数(需提前科学 xx)
function proxy() {export https_proxy=http://127.0.0.1:端口 http_proxy=http://127.0.0.1:端口 all_proxy=socks5://127.0.0.1:端口git config --global https.proxy socks5://127.0.0.1:端口git config --global http.proxy socks5://127.0.0.1:端口echo "HTTP Proxy on"}# where noproxyfunction noproxy() {unset http_proxyunset https_proxyunset all_proxygit config --global --unset https.proxygit config --global --unset http.proxyecho "HTTP Proxy off"}alias proxy='proxy'alias unproxy='noproxy'