1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:22:06 +02:00
tldr/pages/common/shred.md
2025-03-17 23:17:57 +02:00

790 B

shred

Overwrite files to securely delete data. More information: https://www.gnu.org/software/coreutils/manual/html_node/shred-invocation.html.

  • Overwrite a file:

shred {{path/to/file}}

  • Overwrite a file and show progress on the screen:

shred {{[-v|--verbose]}} {{path/to/file}}

  • Overwrite a file, leaving zeros instead of random data:

shred {{[-z|--zero]}} {{path/to/file}}

  • Overwrite a file a specific number of times:

shred {{[-n|--iterations]}} {{25}} {{path/to/file}}

  • Overwrite a file and remove it:

shred --remove {{path/to/file}}

  • Overwrite a file 100 times, add a final overwrite with zeros, remove the file after overwriting it and show verbose progress on the screen:

shred {{[-vzun|--verbose --zero -u --iterations]}} 100 {{path/to/file}}