0

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

bobpetar
  • 5
  • 1
  • 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 Answers1

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.

How to create a soft symbolic link

roomcayz
  • 453