The following arguments are available with hadoop ls command:
Usage: hadoop fs -ls [-d] [-h] [-R] [-t] [-S] [-r] [-u] <args>
Options:
-d: Directories are listed as plain files.
-h: Format file sizes in a human-readable fashion (eg 64.0m instead of 67108864).
-R: Recursively list subdirectories encountered.
-t: Sort output by modification time (most recent first).
-S: Sort output by file size.
-r: Reverse the sort order.
-u: Use access time rather than modification time for display and sorting.
You can sort the files using following command:
hdfs dfs -ls -t -R (-r) /tmp
For details, You can even check out Hadoop Ecosystem tools with the Training for big data.