in reply to find "x" quantity newest files in a dir
but hey, since you can tack commands into find..
find ./ -type d -exec perl -e '$limit="11";$dir="{}";$i=0;@list=`ls -ltF $dir`;print "Directory: $dir\n";foreach(@list) {chomp;$ls="$_";if (($ls=~ m/\//o) ne 1) {if (($i < $limit) && (($ls=~ m/total/o) ne 1) && (($ls=~ m/@/o) ne 1)) {print "keep $ls\n";} elsif ($i > ($limit-1)) {print "rm $ls\n";};} else {$i=($i-1);};$i++;};' {} \;
ooogly, eh? and yeah, it's set up for testing.. no actual rm'ing going on.. but that's easy enough to fix.
this was my fun activity for today.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: find "x" quantity newest files in a dir
by Abigail (Deacon) on Jun 28, 2001 at 03:02 UTC | |
by thatguy (Parson) on Jun 28, 2001 at 04:44 UTC |