How do you start Matlab from a linux terminal while opening a Matlab file?

If I want to open the .m file in matlab editor, is there any way to do this directly from linux terminal? I can't seem to find the answer.

+4
source share
1 answer

Run matlab with the following command to open the file:

matlab -r 'edit <filename>' 
+3
source

Source: https://habr.com/ru/post/1444954/


All Articles