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 0 2008-04-11 16:27 file1
-rw-r–r– [...]

Popularity: 3% [?]

Click here to read more