Does Matlab system call wait for the operation to finish before continuing with the script?

43 visualizaciones (últimos 30 días)
I have a script where I am making system calls such as:
cmd = 'tar -xvf filename.tar';
system(cmd);
My question is, once Matlab has started the system call, does it continue on with the Matlab script immediately or does it wait for the system call to finish outside Matlab before continuing on with the script?
Thanks in advance! James

Respuesta aceptada

Walter Roberson
Walter Roberson el 28 de Mzo. de 2013
It waits for the process. However if the process starts a subprocess and then exits, it will not wait for the subprocess. So if you do not want it to wait, add " &" to the end of the command.
cmd = 'tar -xvf filename.tar &';

Más respuestas (0)

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by