shred(1) - SerenityOS man pages

#Name

shred - destroy a file with its content on disk

#Synopsis

$ shred [options...] [path...]

#Description

shred destroys files' content on disk.

#Options

#Arguments

#Examples

# shred a file and remove it aftewards
$ shred -u /tmp/FILE_TO_BE_SHREDDED_AND_REMOVED
# shred a file with 10 iterations
$ shred --iterations 10 /tmp/FILE_TO_BE_SHREDDED
# shred a file with verbose progress and 10 iterations
$ shred -v --iterations 10 /tmp/FILE_TO_BE_SHREDDED

#See also