MATLAB equivalent to ls -l
4 views (last 30 days)
Show older comments
yonatan s
on 8 Jan 2020
Commented: Walter Roberson
on 8 Jan 2020
Hi, what is MATLAB equivalent to ls -l?
1 Comment
Walter Roberson
on 8 Jan 2020
On Mac and Linux, MATLAB passes the parameters to the ls command, so
ls -l
at the MATLAB prompt will show long information.
Accepted Answer
John D'Errico
on 8 Jan 2020
Edited: John D'Errico
on 8 Jan 2020
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 Comments
More Answers (0)
See Also
Categories
Find more on Startup and Shutdown 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!