3

Tip #403   list the most recent files in a directory

If you just want to find out what's new in a directory:

lsnew() { ls -lt ${1+"$@"} | head -20; }