List directory files with a certain datestamp
List the names of files in the current directory dated May 16.
ls -l | awk '{if($6=="May" && $7=="16") print $NF }'
A chronological documentation test project, nothing serious, really!
List the names of files in the current directory dated May 16.
ls -l | awk '{if($6=="May" && $7=="16") print $NF }'