to delete the files
find . -type f -size 0b -delete
Use the Find command to find files by size and print file names to standard output.
find . -type f -size 0b -print
find . -type f -size 0b -delete
find . -type f -size 0b -print
Leave a Reply
You must be logged in to post a comment.