diff options
| author | Peter Pentchev <roam@FreeBSD.org> | 2003-12-12 11:08:51 +0000 |
|---|---|---|
| committer | Peter Pentchev <roam@FreeBSD.org> | 2003-12-12 11:08:51 +0000 |
| commit | a61f15043cb6d4574e5c0d1ac0f0157aaaaa7614 (patch) | |
| tree | fa88142f985a91b6e0e835e013fcb5e228eba6da | |
| parent | 48529e81e400c5e840d91514fa0d1bd58827887d (diff) | |
Notes
| -rw-r--r-- | share/man/man9/hexdump.9 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man9/hexdump.9 b/share/man/man9/hexdump.9 index 4170d4bf0b41e..ea6cd4127385a 100644 --- a/share/man/man9/hexdump.9 +++ b/share/man/man9/hexdump.9 @@ -33,15 +33,15 @@ .Dt HEXDUMP 9 .Sh NAME .Nm hexdump -.Nd "Dump a block of bytes to the console in hexidecimal form" +.Nd "Dump a block of bytes to the console in hexadecimal form" .Sh SYNOPSIS .In sys/systm.h .Ft void .Fn hexdump "void *ptr" "int length" "const char *hdr" "int flags" .Sh DESCRIPTION -Hexdump prints an array of bytes to the console in hexidecimal form, along with +Hexdump prints an array of bytes to the console in hexadecimal form, along with the ASCII representation of the bytes, if possible. By default, each line of -output will start with an offset count, followed by 16 hexidecimal values, +output will start with an offset count, followed by 16 hexadecimal values, followed by 16 ASCII characters. .Bl -tag -width 6n .It Fa ptr @@ -58,12 +58,12 @@ Flags for controlling the formatting of the output Integer value of the number of bytes to display on each line. A value of 0 implies that the default value of 16 will be used. .It Fa Bits 8-15 -Character ASCII value to use as the separator for the hexidecimal output. A +Character ASCII value to use as the separator for the hexadecimal output. A value of 0 implies that the default value of 32 (ASCII space) will be used. .It Fa HD_OMIT_COUNT Don't print the offset column at the beginning of each line .It Fa HD_OMIT_HEX -Don't print the hexidecimal values on each line. +Don't print the hexadecimal values on each line. .It Fa HD_OMIT_CHARS Don't print the character values on each line. .El |
