Are you new here? Subscribe to my RSS feed. Thanks for visiting!Here is a quick tip on how to list files in a directory with a certain date stamp using awk.
Let’s say that you want to list all files stamped with 2008-04-11.
# ls -l | awk ‘{if($6==”2008-04-11″) print $N }’
-rw-r–r– 1 adam users […]

Popularity: 3% [?]

Click here to read more