How to initiate a linux (shell) command from matlab but not wait for the output?
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
covariant_cat
el 12 de Jul. de 2013
Comentada: esmail
el 17 de Feb. de 2015
I know I can use the function unix (or system), but it has to wait the script to return. The script actually will run for a long time. I prefer matlab function to return immediately after calling the shell script. Is it possible?
Thanks a lot in advance!
0 comentarios
Respuesta aceptada
Ken Atwell
el 13 de Jul. de 2013
If you end the command line with an ampersand, system should return immediately
system('some-long-running-command &');
Of course, you won't be able to capture the output of the command.
2 comentarios
esmail
el 17 de Feb. de 2015
Hi. My problem is that I'm running multiple files with & in the background and am using system('wait') for all of them to complete. However, system('wait') is not working. I'd appreciate your response.
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!