vote up 1 vote down star
1

What's the easiest/best way to find and remove empty (zero-byte) files using only tools native to Mac OS X?

flag
please clarify! one file that's empty, all empty files? what have you tried, what where the errors? – hop Feb 13 at 2:39
A comment to my answer clarified the question; updating appropriately. – Charles Duffy Feb 13 at 5:09
Thank you Charles Duffy. Sorry for my bad English :p – Bank Feb 13 at 12:32

3 Answers

vote up 7 vote down check

Easy enough:

find . -type f -empty -exec rm -f '{}' +
link|flag
-type f good call – dwc Feb 13 at 1:52
I use find . -size 0 -exec rm {} \; but add -type f should be better – Bank Feb 13 at 3:59
vote up 1 vote down
find /path/to/stuff -empty

If that's the list of files you're looking for then make the command:

find /path/to/stuff -empty -exec rm {} \;

Be careful! There won't be any way to undo this!

link|flag
Better to use + than ; if you have a current find -- that way it acts the way xargs would if it were in the pipeline. – Charles Duffy Feb 13 at 1:50
vote up 1 vote down

Use:

find . -type f -size 0b -exec rm {} ';'

with all the other possible variations to limit what gets deleted.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.