Posted by Hans-Henry Jakobsen
List the names of files in the current directory dated May 16.
ls -l | awk '{if($6=="May" && $7=="16") print $NF }'
Tags: awk
Comments are closed.