I have created a symbolic link to my Matlab installation path in my home directory, so that I can type matlab
and run it from anywhere, instead of typing out the entire path.
ln -s /exp/comm/matlab-R2014b/bin/matlab matlab
Adding permissions to execute this:
chmod +x matlab
However, I am always required to type ./matlab
instead of matlab
for this to execute. Is there any way to get rid of ./
and just type the name of the symbolic link and have it run correctly?