I want to run commands like pdflatex and cp from an octave script. Is there a way to do that?
Asked
Active
Viewed 1.5k times
2 Answers
9
Use the function system(<command>) to call a shell command from Octave. Replace <command> with the command you want to execute. (Note that MATLAB allows a shell command to be executed by prefixing it with an exclamation mark !, but Octave does not support this syntax. See this Wikibooks page for more information.)
bwDraco
- 45,747
- 43
- 165
- 205
1
unix(command) is another way to go. If you'd like to get properties of files directories etc. Xoctave does it automatically.
Chris Naber
- 31
- 2
-
Just for example: unix('mv \*.\* ex1/') – nguyenhoai890 Jan 02 '18 at 06:17