ls by date | List Unix files with 'ls' in date order

Question:
How to list Unix files in date order?

In order to ls by date or list Unix files in last modifed date order use the -t flag which is for 'time last modified'.

So for example, you might like to use:

ls -alt

or to ls by date in reverse date order use the -t flag as before but this time with the -r flag which is for 'reverse'.