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.

This question was asked of me by a co-worker. He wanted to not only delete the files (which just removes the inode from the file system) but also wipe the data multiple times.

The criteria are:

  1. It should recurse into all sub-directories of the top-level directory
  2. It should overwrite all of the file's data 10 times
  3. The garbage data used to overwrite should be at least pseudo-random
  4. It should not require uncommon utilities
  5. Bonus points for being portable

Here is the portable answer I came up with. What else is out there?

find /dir/to/nuke -type f -exec sh -c \
  'for f; do \
     for i in $(seq 1 10); do \
       echo dd if=/dev/urandom bs=$(stat -c "%s" "$f") count=1 of="$f"; \
     done; \
   done' _ {} +

Note: I crippled the dd command with an echo since this code is quite destructive

share|improve this question

closed as off topic by Brian Roach, Eugene Mayevski 'EldoS Corp, Keith, William Pursell, Tim Cooper Jan 16 at 1:51

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 3 down vote accepted

There are existing solutions for this problem -- try srm or shred.

share|improve this answer

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