I can fire
ls -lrt to get files and folders sorted by modification date, but this does not separate directories from files. I want ls to show me first directories by modification date and then files by modification date. How to do that?
what about something like this:
ls -ltr --group-directories-first ls -t
or (for reverse, most recent at bottom):
ls -tr
The ls man page describes this in more details, and lists other options.
Directories have d in front of there permissions in ls -ltr
So to get directories with sorted modification date use
ls -ltr |grep ^d
And to files other than directories
ls -ltr | grep -v ^d