I have followed this super user post to get sublime command line subl command to work in terminal to no avail.
I have the following bash_profile
export PATH="/usr/local/mysql/bin:$PATH"
export PATH=$PATH:~/binand my $PATH outputs
/usr/local/mysql/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/binI also created a sym-link with the following code
ln -s "/Applications/Sublime Text " ~/bin/sublHowever subl command returns command not found
1 Answer
Your $PATH doesn't contain ~/bin, which is why it doesn't work. Are you sure the second statement is executed properly?
You can safely create the symlink somewhere else though, e.g. in /usr/local/bin:
sudo ln -s "/Applications/Sublime Text " /usr/bin/subl