You can use:
ls -Rt
where -R
means recursive (include subdirectories) and -t
means “sort by last modification date”.
To see a list of files sorted by date modified, use:
ls -l -Rt
An alias can also be created to achieve this:
alias lt="ls -lht"
lt
Where -h
gives a more readable output.