With ls command, does it possible to show only file created after a date, hour...
I'm asking it because I have a directory with thousand of files.
I want files created since yesterday.
I use ls -ltr but I have to see all files...
There is an equivalent of DIRECTORY/SINCE=date from OpenVMS ?



lslists files, but it doesn't offer much to select what files to list or the output format. Use globbing (shell wildcards) orfindwhen you want to select files by name or metadata (e.g. date). – Gilles Mar 24 '11 at 20:46