Answers for "how to find empty directories in linux"

0

how to find empty folders linux

find . -type d -empty
Posted by: Guest on January-31-2021
0

how to find empty directories in linux

find . -type d -empty # use this to find the empty files

find . -type d -empty -delete #use this to delete all empty dirctories
Posted by: Guest on June-17-2021

Code answers related to "how to find empty directories in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language