diff options
author | ru <ru@FreeBSD.org> | 2004-05-16 21:34:15 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-05-16 21:34:15 +0000 |
commit | 7cba80f9da12441fea24f152a1bed11d0fd6faaf (patch) | |
tree | dcbec5495dbb48d64396c4b1303a1054c3a1b0a0 /bin/dd | |
parent | deac0b719cfde42c62efb4f05082fee4170626d5 (diff) | |
download | FreeBSD-src-7cba80f9da12441fea24f152a1bed11d0fd6faaf.zip FreeBSD-src-7cba80f9da12441fea24f152a1bed11d0fd6faaf.tar.gz |
Bump document date for the latest functional change.
Minor markup tweaks.
Diffstat (limited to 'bin/dd')
-rw-r--r-- | bin/dd/dd.1 | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/bin/dd/dd.1 b/bin/dd/dd.1 index ff87f17..1cbe499 100644 --- a/bin/dd/dd.1 +++ b/bin/dd/dd.1 @@ -31,7 +31,7 @@ .\" @(#)dd.1 8.2 (Berkeley) 1/13/94 .\" $FreeBSD$ .\" -.Dd January 13, 1994 +.Dd March 5, 2004 .Dt DD 1 .Os .Sh NAME @@ -360,17 +360,21 @@ in the same format as the standard completion message and will exit. .Sh EXAMPLES Check that a disk drive contains no bad blocks: -.Dl dd if=/dev/ad0 of=/dev/null bs=1m +.Pp +.Dl "dd if=/dev/ad0 of=/dev/null bs=1m" .Pp Do a refresh of a disk drive, in order to prevent presently recoverable read errors from progressing into unrecoverable read errors: -.Dl dd if=/dev/ad0 of=/dev/ad0 bs=1m .Pp -Remove parity bit from a file -.Dl dd if=file conv=parnone of=file.txt +.Dl "dd if=/dev/ad0 of=/dev/ad0 bs=1m" +.Pp +Remove parity bit from a file: +.Pp +.Dl "dd if=file conv=parnone of=file.txt" .Pp Check for (even) parity errors on a file: -.Dl dd if=file conv=pareven | cmp -x - file +.Pp +.Dl "dd if=file conv=pareven | cmp -x - file" .Sh DIAGNOSTICS .Ex -std .Sh SEE ALSO |