Linux: Find recently modified large files

Modified on Mon, 31 Mar at 6:27 PM

Files modified in the last 3 days, larger than 5MB, and return their sizes:

find . -type f -mtime -3 -size +5M -exec ls -lh {} \; | awk '{ print $9 ": " $5 }'

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article