From ad6e6112f18cd15c93d9d5966423a0b097b36372 Mon Sep 17 00:00:00 2001 From: bonnie Date: Sun, 19 Jul 2020 22:55:29 +0800 Subject: [PATCH] Find - Find large files in the system (e.g. >4G) --- README.md | 5 +++++ 1 file changed, 5 insertions(+) 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