linux:find:find_empty_files
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
linux:find:find_empty_files [2020/05/05 17:36] – created peter | linux:find:find_empty_files [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Linux - Find - Find Empty Files ====== | ====== Linux - Find - Find Empty Files ====== | ||
+ | |||
+ | <code bash> | ||
+ | find ./ -type f -size 0 | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | <code bash> | ||
+ | find ./ -type f -empty | ||
+ | </ | ||
+ | |||
+ | This commands will find all zero size files in the current directory with sub-directories and then print the full pathname for each file to the screen. | ||
+ | |||
+ | * **./ | ||
+ | * **-type f** flag specifies to find only files. | ||
+ | * **-size 0** and **-empty** flags specifies to find zero length files. | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Find and then delete all zero size files ===== | ||
+ | |||
+ | To find and then delete all zero size files, there are variants you can use: | ||
+ | |||
+ | <code bash> | ||
+ | find ./ -type f -size 0 -exec rm -f {} \; | ||
+ | |||
+ | find ./ -type f -size 0 | xargs rm -f | ||
+ | |||
+ | find ./ -type f -size 0 -delete | ||
+ | </ | ||
+ | |||
+ | * The xargs will cause all the filenames to be sent as arguments to the **rm -f** commands. | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | It avoids the overhead of executing the **rm** command by doing the **unlink()** call inside **find()**. | ||
+ | </ | ||
linux/find/find_empty_files.1588700166.txt.gz · Last modified: 2020/07/15 09:30 (external edit)