linux:find:find_empty_directories
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
linux:find:find_empty_directories [2020/05/05 17:37] – created peter | linux:find:find_empty_directories [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Linux - Find - Find Empty Directories ====== | ====== Linux - Find - Find Empty Directories ====== | ||
+ | |||
+ | <code bash> | ||
+ | find ./ -type d -empty | ||
+ | </ | ||
+ | |||
+ | This command will find all empty directories in the current directory with sub-directories and then print the full pathname for each empty directory to the screen. | ||
+ | |||
+ | * **./** means start searching from the current directory. | ||
+ | * **-type d** flag is specifies to find only directories. | ||
+ | * **-empty** | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Find and then delete all empty directories ===== | ||
+ | |||
+ | To find and then delete all empty directories, | ||
+ | |||
+ | <code bash> | ||
+ | find ./ -depth -type d -empty -exec rmdir {} \; | ||
+ | </ | ||
+ | |||
+ | or | ||
+ | |||
+ | <code bash> | ||
+ | find ./ -type d -empty -delete | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
linux/find/find_empty_directories.1588700232.txt.gz · Last modified: 2020/07/15 09:30 (external edit)