Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have many "bad" files after recover my broken hdd.

I need script in bash which helps me remove bad files like

  • zero byte consists only (00 00 00 00 00 ...)
share|improve this question
You can use cmp filename /dev/zero. If the file consists of all null bytes, "EOF" will be included in the output to stderr, if there are any non-null bytes, "differ" will be included in the output to stderr (based on GNU cmp). – Dennis Williamson Jan 28 '12 at 17:08

closed as not a real question by Joachim Isaksson, Mitch Wheat, Brian Roach, glenn jackman, Bill the Lizard Jan 28 '12 at 16:58

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

It's better to use find:

find -maxdepth 1 -type f -empty -print0 | xargs -0 rm -f -v
share|improve this answer
Except that a file filled with nulls is not empty. Also, see -exec and -delete. – Dennis Williamson Jan 28 '12 at 16:58
find . -type f -size 0c -maxdepth 1 -exec rm {} \;

How about this?

share|improve this answer
find . -type f -size 0 -exec rm {} \; | awk '{ print $8 }' -- remove zero size files, and it's Ok. What about detect zero-bytes-filled files? – vinnitu Jan 28 '12 at 10:42
Shouldn't it be rm \{\}? Or perhaps that's a zsh thing... – Borealid Jan 28 '12 at 21:14
@Borealid It works fine in bash. – shadyabhi Jan 28 '12 at 21:20

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