diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2011-05-04 06:49:12 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2011-05-04 06:49:12 +0000 |
commit | 2082bec85efe77f9e84b3b18bf34de2d56225d78 (patch) | |
tree | 73e8cd03a2c852d20cab6958e56d686750e644e2 | |
parent | d6d24d4506209f54e202c21e7be8c52d02c3afb8 (diff) |
- note that quotes may have to be escaped from the shell and add an example
(requested by Michael W. Bombardieri, who also provided the example; otto
provided a better description)
- reword the rest of the descriptions in EXAMPLES to make them a bit clearer
ok otto
-rw-r--r-- | usr.bin/hexdump/hexdump.1 | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/usr.bin/hexdump/hexdump.1 b/usr.bin/hexdump/hexdump.1 index 81242ff162e..45b8b61d6c4 100644 --- a/usr.bin/hexdump/hexdump.1 +++ b/usr.bin/hexdump/hexdump.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: hexdump.1,v 1.21 2010/09/03 11:09:29 jmc Exp $ +.\" $OpenBSD: hexdump.1,v 1.22 2011/05/04 06:49:11 jmc Exp $ .\" $NetBSD: hexdump.1,v 1.14 2001/12/07 14:46:24 bjh21 Exp $ .\" .\" Copyright (c) 1989, 1990, 1993 @@ -30,7 +30,7 @@ .\" .\" from: @(#)hexdump.1 8.2 (Berkeley) 4/18/94 .\" -.Dd $Mdocdate: September 3 2010 $ +.Dd $Mdocdate: May 4 2011 $ .Dt HEXDUMP 1 .Os .Sh NAME @@ -182,7 +182,9 @@ Any whitespace before or after the slash is ignored. .Pp The format is required and must be surrounded by double quote .Pq \&"\& \&" -marks. +marks +(the quote mark is a special character in many shell programs, +and may have to be escaped from the shell). It is interpreted as a fprintf-style format string (see .Xr fprintf 3 ) , with the @@ -346,14 +348,25 @@ option. .Sh EXIT STATUS .Ex -std hexdump .Sh EXAMPLES -Display the input in perusal format: +Display characters using a fieldwidth of 4, +and using special names for control characters: +.Pp +.Dl $ hexdump -e '"%4_u"' file +.Pp +An example file for use with the +.Fl f +option, to display the input in perusal format: .Bd -literal -offset indent "%06.6_ao " 12/1 "%3_u " "\et\et" "%_p " "\en" .Ed .Pp -Implement the \-x option: +An example file for use with the +.Fl f +option, which implements the equivalent of the +.Fl x +option: .Bd -literal -offset indent "%07.7_Ax\en" "%07.7_ax " 8/2 "%04x " "\en" |