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 ...)
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.
|
It's better to use
|
|||
|
How about this? |
|||||||
|
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 GNUcmp). – Dennis Williamson Jan 28 '12 at 17:08