Add documentation for verify

This commit is contained in:
louib
2019-11-13 18:35:12 -05:00
parent 214ff8fb7a
commit a5715eeca4
3 changed files with 8 additions and 2 deletions

View File

@@ -1,6 +1,10 @@
RELEASE NOTES
=============
v0.27
-----
- Add `verify` method to verify a disk is zero filled [#128](https://github.com/martijnvanbrummelen/nwipe/pull/128)
v0.26
-----
- Add exclude drive option (Thanks PartialVolume)

View File

@@ -68,6 +68,8 @@ ops2 \- RCMP TSSIT OPS\-II
random / prng / stream \- PRNG Stream
.IP
zero / quick \- Overwrite with zeros
.IP
verify \- Verifies disk is zero filled
.TP
\fB\-l\fR, \fB\-\-logfile\fR=\fIFILE\fR
Filename to log to. Default is STDOUT

View File

@@ -452,8 +452,8 @@ void display_help()
puts(" gutmann - Peter Gutmann's Algorithm");
puts(" ops2 - RCMP TSSIT OPS-II");
puts(" random / prng / stream - PRNG Stream");
puts(" zero / quick - Overwrite with zeros\n");
puts(" verify - Verifies disk is zero filled");
puts(" zero / quick - Overwrite with zeros");
puts(" verify - Verifies disk is zero filled\n");
puts(" -l, --logfile=FILE Filename to log to. Default is STDOUT\n");
puts(" -p, --prng=METHOD PRNG option (mersenne|twister|isaac)\n");
puts(" -r, --rounds=NUM Number of times to wipe the device using the selected");