Subl command not working - command not found

前端 未结 13 497
别那么骄傲
别那么骄傲 2021-01-30 05:11

I\'m having difficulty getting this set up. I fixed my .bash_profile, and created the symlink using the following command from the Sublime website:

         


        
13条回答
  •  盖世英雄少女心
    2021-01-30 05:38

    My similar problem was solved simply by omitting the quotes. So if you're working with:

    ln -s "/Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl" ~/bin/sub
    

    I instead did:

    ln -s /Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl ~/bin/subl
    

提交回复
热议问题