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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…