Running stuff from terminal is always faster compare to GUI, and it’s my favorite way of working since I stepped into the UNIX-like scene.
Recently when I was setting up Sublime Text 2 on a new machine, I found that this Sublime Text 2 documentation for OSX terminal is outdated.
The current appropriate way to link Sublime Text 2 to use the subl
command is:
$ ln -s /Applications/Sublime Text 2.app/Contents/SharedSupport/bin/subl /usr/local/bin/subl
Updated:
For Sublime Text 3, use the same command with an updated directory name. And remember to remove the existing link if you want to use subl
command for Sublime Text 3.
# Remove existing sublime text 2 link
$ rm /usr/local/bin/subl
$ ln -s /Applications/Sublime Text.app/Contents/SharedSupport/bin/subl /usr/local/bin/subl