One of the commonest things a Linux user will always do on the command line is listing the contents of a directory. As we may already know, ls and dir are the two commands available on Linux for listing directory content, with the former being more popular and in most cases, preferred by users.
When listing directory contents, the results can be sorted based on several criteria such as alphabetical order of filenames, modification time, access time, version and file size. Sorting using each of these file properties can be enabled by using a specific flag.
In this brief ls command guide, we will look at how to sort the output of ls command by last modification time (date and time).
Let us start by executing some basic ls commands.
Linux Basic ls Commands
1. Running ls command without appending any argument will list current working directory contents.
$ ls
2. To list contents of any directory, for example /etc directory use:
$ ls /etc
3. A directory always contains a few hidden files (at least two), therefore, to show all files in a directory, use the -a
or --all
flag:
$ ls -a
4. You can as well print detailed information about each file in the ls output, such as the file permissions, number of links, owner’s name and group owner, file size, time of last modification and the file/directory name.
This is activated by the -l
option, which means a long listing format as in the next screenshot:
$ ls -l
Sort Files Based on Time and Date
5. To list files in a directory and sort them last modified date and time, make use of the -t
option as in the command below:
$ ls -lt
6. If you want a reverse sorting files based on date and time, you can use the -r
option to work like so:
$ ls -ltr
We will end here for now, however, there is more usage information and options in the ls command, so make it a point to look through it or any other guides offering ls command tricks every Linux user should know or use sort command. Last but not least, you can reach us via the feedback section below.
I need your help dearly.
1. What is the option to output the version information of ls?
2. What is the ls option that prints the author or a file?
@Gwolo,
Check these commands…
Thanks a lot. I initially wanted to list files by date modified. But, you went even further and explained how to reverse the order. This seemed to make my task even easier. Thanks a lot.
This was very helpful, if i have a question how can i get help with the sort and pipe command?
@Denise
Consult the sort man page:
I’m learnig nuch.
Thanks
@Javier
Welcome, nice to know that. Thanks for always following us.