unix/system comand Always print out some environment setting when using it
이전 댓글 표시
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!

답변 (1개)
% Without semicolon:
system('pwd')
% With semicolon:
system('pwd');
% With semicolon and catching outputs:
[status, out] = system('pwd');
disp('ready')
The last version helps.
카테고리
도움말 센터 및 File Exchange에서 System Commands에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!