unix/system comand Always print out some environment setting when using it
Show older comments
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!

Answers (1)
% Without semicolon:
system('pwd')
% With semicolon:
system('pwd');
% With semicolon and catching outputs:
[status, out] = system('pwd');
disp('ready')
The last version helps.
Categories
Find more on Variables 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!