Originally posted by: MarkTaylor
yes ;)
cd /your_directory
find . -size 1048576c | xargs -i ls -l {}
-
find . -size 1048576c | xargs -i rm {}
Use with extreme caution .. this will go into sub directories .. check out the -prune flag to stay in the same dir ..
You could also use ..
cd /your_directory
ls -l | awk '$5==1048576{print $9}' | xargs #### etc blah blah
HTH
Mark Taylor
#AIX-Forum