Explicitly mark comment lines in builtin sheets.

This commit is contained in:
Lars Yencken
2013-08-22 11:34:11 +10:00
parent f89d887c21
commit 8245d3f4ec
24 changed files with 86 additions and 86 deletions

View File

@ -1,13 +1,13 @@
To shred a file (5 passes) and verbose output:
# To shred a file (5 passes) and verbose output:
shred -n 5 -v file.txt
To shred a file (5 passes) and a final overwrite of zeroes:
# To shred a file (5 passes) and a final overwrite of zeroes:
shred -n 5 -vz file.txt
To do the above, and then truncate and rm the file:
# To do the above, and then truncate and rm the file:
shred -n 5 -vzu file.txt
To shred a partition:
# To shred a partition:
shred -n 5 -vz /dev/sda
Remember that shred may not behave as expected on journaled file systems if file data is being journaled.
# Remember that shred may not behave as expected on journaled file systems if file data is being journaled.