问题
How to sort the files according to the time stamp in unix? I need to sort the files and also based on time they created.
回答1:
File modification:
ls -t
Inode change:
ls -tc
File access:
ls -tu
"Newest" one at the bottom:
ls -tr
None of this is a creation time. Most Unix filesystems don't support creation timestamps.
回答2:
Use -t on ls. e.g:.
ls -tr
or
ls -ltr
来源:https://stackoverflow.com/questions/6023726/how-to-sort-the-files-according-to-the-time-stamp-in-unix