vote up 2 vote down star

How can I sort the output of ls by last modified date?

flag

You guys need to chill - the answer isn't there on Google without digging around, and there isn't to my knowledge a duplicate on SO. Question asked, question answered, move on. – nearly_lunchtime Apr 9 at 13:26
Thanks for the quick replies though! – nearly_lunchtime Apr 9 at 13:26
google "ls sort last modified". It's the first result for me. – A. Levy Apr 9 at 13:39
Yep that does, thanks. The link posted by thijs in the comments doesn't though and isn't constructive. – nearly_lunchtime Apr 9 at 13:42
I think the votes to close are because this isn't programming related. – Jon B Apr 9 at 13:50

4 Answers

vote up 4 vote down check

Using -t:

ls -t
link|flag
vote up 2 vote down

option: -t

link|flag
vote up 7 vote down
ls -t

or (for reverse, most recent at bottom):

ls -tr
link|flag
vote up 2 vote down

Pass the -t flag:

$ ls -t
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.