Find and Delete files any directory
Find and Delete files any directory
# finds files that are over 20mb
find /data/store2 -type f -size +20000k -exec ls -lh {} \; | awk '{print $9 ":" $5 }'
# finds files that are over 20mb
find /data/store2 -type f -size +20000k -exec ls -lh {} \; | awk '{print $9 ":" $5 }'