How to Find Large Files in Linux Using Find

Sometimes when disk space runs low, we need to clean up useless large files such as logs. The following command finds files larger than 800 MB in the current directory:

# find . -type f -size +800M

Leave a Comment

Your email address will not be published.