i just installed Matlab on my ubuntu 14.04 and i can open it just with terminal writing full path, but i want to open terminal and write only "matlab" to start that program without writing full path. thanks
Asked
Active
Viewed 738 times
0
-
Maybe you want to look at it : http://superuser.com/questions/299872/can-i-shorten-my-directory-commands-in-ubuntu And the most popular answer : http://superuser.com/a/299874 – Emre Doğan May 08 '14 at 21:34
1 Answers
2
Probably best solution will be creating soft symbolic link to /usr/bin
.
Just type into terminal sudo ln -s <full_path_to_matlab> /usr/bin/matlab
, and thats all.
-
2Well... I have a question x) I always used
ln -s fullpath symlink
and it works, why is that ? oO – MrVaykadji May 08 '14 at 21:41 -