I have a directory: /home/user/
How can I list every file in this directory (including those in sub directories) and order them by the date that they were last modified?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use:
where
-Rmeans recursive (include subdirectories) and-tmeans “sort by last modification date”.To see a list of files sorted by date modified, use:
An alias can also be created to achieve this:
Where
-hgives a more readable output.