diff --git a/README.md b/README.md index a0b8a9f..85992c6 100644 --- a/README.md +++ b/README.md @@ -963,6 +963,11 @@ replace "www" "w" -- * find mso*/ -name M* -printf "%f\n" ``` +##### Find large files in the system (e.g. >4G) +```bash +find / -type f -size +4G +``` + ##### Find and delete file with size less than (e.g. 74 byte) ```bash find . -name "*.mso" -size -74c -delete