How to find and Delete the empty Directories And Files In UNIX !!!

The following command would help you find empty files & directory find . -type d -empty — for directory find . -type f -empty — for files Delete all empty directories under the current directory using the following command : find . -type d -empty -exec rmdir {} \; To see the count of files […]

See More