Monday, September 20, 2010

How to remove files of particular date?

ls -lrt | grep "Jun 29" | awk '{ if( int($2) != "0") { print "rm "$9 } }'

No comments:

Post a Comment