list of csh commands to be run from matlab script

13 次查看(过去 30 天)
I need to run a list of csh commands on the unix terminal from a matlab script.
Whenever I try to use the system() function, it gets into a infinite loop in the script (the control goes to the terminal in MATLAB.
Until I type the exit command in MATLAB terminal, the control does not go back to the script execution.
As the first line is csh, the rest of the line becomes useless.
I am not able to understand how to achieve this.
The list of commands are as follows:
csh
source /home/install/cshrc
setenv ...
setenv ...
{ some software specifc commands}
Thanks in advance
Aksh
  3 个评论
Aksh Chordia
Aksh Chordia 2020-11-19
编辑:Aksh Chordia 2020-11-19
Is there any alternate way to execute a list of csh commands without using the system function from the matlab script?

请先登录,再进行评论。

回答(1 个)

Bjorn Gustavsson
Bjorn Gustavsson 2020-11-19
You might accidentally start a c-shell with your first csh command. My suggestion is that you put all csh-commands into a csh-script, and run that instead of uising matlab to making the list of commands to run. That seems cleaner. If you need to dynamically generate the commands, you should be able to save those to a csh-script (use system to set its permissions to executable) and run that script with system. This seems like a "cleaner" solution than yours, hopefully it works?
HTH
  2 个评论
Aksh Chordia
Aksh Chordia 2020-11-22
Thanks for your insight.
But I also want to pass the arguments to the now-interactive command terminal of MATLAB (a software is running on it, which has an interactive command line feature).
I need to run this software through the script (matlab file) by giving it commands in real time which are placed on the script (matlab file ) itself.
Basically, I need to run a software on the MATLAB command prompt and give it commands based on computation and the results it gives. The issue with using "system" function is that, it does not gives back the control to the script until the system function is completely executed (in my case, when the software exits)
Again thank you for the resourceful wiki
Looking forward to hearing back soon.
Thank you
Aksh
Bjorn Gustavsson
Bjorn Gustavsson 2020-11-23
Do I interpret your objective correctly: You want to start a programme/csh-script from matlab use the output of that programme to do some further processing and controll the running of the programme/csh-script from the results of that processing?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by