unix/system comand Always print out some environment setting when using it
Afficher commentaires plus anciens
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!

Réponses (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 commentaire
ruth wang
le 4 Juil 2022
Catégories
En savoir plus sur Variables dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!