MATLAB equivalent to ls -l
5 ビュー (過去 30 日間)
古いコメントを表示
Hi, what is MATLAB equivalent to ls -l?
1 件のコメント
Walter Roberson
2020 年 1 月 8 日
On Mac and Linux, MATLAB passes the parameters to the ls command, so
ls -l
at the MATLAB prompt will show long information.
採用された回答
John D'Errico
2020 年 1 月 8 日
編集済み: John D'Errico
2020 年 1 月 8 日
It depends on what you want from it. What exactly are you looking for?
D = dir
MAY give you much of what you may want, if you return
However, if you really, alsolutely need to see the output of ls -l, then just do
system('ls -l')
So there is no need for an equivalent thereof, just execute the system call itself.
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!