unix/system comand Always print out some environment setting when using it
Mostrar comentarios más antiguos
When I use the command unix or system, it will always print out some settings in the screen, it really bothers me. Could anyone help me?
The first line following my command is not what I want. See these pictures for illustration. Thanks advance! Thank you very much!

Respuestas (1)
% Without semicolon:
system('pwd')
% With semicolon:
system('pwd');
% With semicolon and catching outputs:
[status, out] = system('pwd');
disp('ready')
The last version helps.
1 comentario
ruth wang
el 4 de Jul. de 2022
Categorías
Más información sobre System Commands en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!