两种方式
-
使用
alias
,如果使用的是自带的 shell,则编辑~/.bash_profile
文件添加下面的行alias subl="'/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl'"
如果使用的是
zsh
把上面的内容添加到~/.zshrc
即可 -
官方推荐的做法是,不过我不推荐,因为,如果删除了,一般软链接是没删除的
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" ~/bin/subl
目前尚无回复