.bat problem using system() or dos()
Show older comments
so...
>> dos('example.bat')
launches code that interrupts a function until example.bat is "quit"
>
you can manually enter commands on the command line however I cant manage to enter additional commands from a function if you manually enter
>quit
then this is returned
>>
and the function will continue to execute from function.m I need to be able to enter commands like "quit" into the .bat from my function
help?
Answers (1)
Walter Roberson
on 15 Jun 2012
fid = fopen('example.bat','wt');
fprintf(fid, 'first command\n');
fprintf(fid, 'second command\n');
fprintf(fid, 'quit\n');
fclose(fid);
Categories
Find more on Automated Driving Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!