Shred Files
This command find all file from the current directory and subdirectories (-type f) and pipe (via xargs or -exec) it to shred (-n 48 48 iterations -z finish by zero -u remove file -v verbose -f force)
find . -type f -print0 | xargs -0 shred -fuzv -n 48
find . -type f -exec shred -fuzv -n 48 {} \;
2019-05-13 16:31:48
Comments
Add a Comment