]> git.ipfire.org Git - thirdparty/util-linux.git/blame - text-utils/hexdump.1.adoc
Merge branch 'PR/libmount-exec-errors' of github.com:karelzak/util-linux-work
[thirdparty/util-linux.git] / text-utils / hexdump.1.adoc
CommitLineData
295b3979 1//po4a: entry man manual
aad107b6
MB
2////
3Copyright (c) 1989, 1990, 1993
4The Regents of the University of California. All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions
8are met:
91. Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
112. Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
13 documentation and/or other materials provided with the distribution.
143. All advertising materials mentioning features or use of this software
15 must display the following acknowledgement:
16This product includes software developed by the University of
17California, Berkeley and its contributors.
184. Neither the name of the University nor the names of its contributors
19 may be used to endorse or promote products derived from this software
20 without specific prior written permission.
21
22THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32SUCH DAMAGE.
33
34 @(#)hexdump.1 8.2 (Berkeley) 4/18/94
35////
36= hexdump(1)
37:doctype: manpage
f42ed819 38:man manual: User Commands
aad107b6
MB
39:man source: util-linux {release-version}
40:page-layout: base
41:command: hexdump
bbeadfdd
MB
42:plus: +
43:underscore: _
aad107b6
MB
44
45== NAME
46
47hexdump - display file contents in hexadecimal, decimal, octal, or ascii
48
28d212c7
MB
49== SYNOPSIS
50
aad107b6
MB
51*hexdump* _options file_ ...
52
fdf734f7
CH
53*hd* _options file_ ...
54
aad107b6
MB
55== DESCRIPTION
56
57The *hexdump* utility is a filter which displays the specified files, or standard input if no files are specified, in a user-specified format.
58
59== OPTIONS
60
61Below, the _length_ and _offset_ arguments may be followed by the multiplicative suffixes KiB (=1024), MiB (=1024*1024), and so on for GiB, TiB, PiB, EiB, ZiB and YiB (the "iB" is optional, e.g., "K" has the same meaning as "KiB"), or the suffixes KB (=1000), MB (=1000*1000), and so on for GB, TB, PB, EB, ZB and YB.
62
63*-b*, *--one-byte-octal*::
bbeadfdd 64_One-byte octal display_. Display the input offset in hexadecimal, followed by sixteen space-separated, three-column, zero-filled bytes of input data, in octal, per line.
aad107b6 65
bbf5bf8a
TW
66*-X*, *--one-byte-hex*::
67_One-byte hexadecimal display_. Display the input offset in hexadecimal, followed by sixteen space-separated, two-column, zero-filled bytes of input data, in hexadecimal, per line.
68
aad107b6 69*-c*, *--one-byte-char*::
bbeadfdd 70_One-byte character display_. Display the input offset in hexadecimal, followed by sixteen space-separated, three-column, space-filled characters of input data per line.
aad107b6
MB
71
72*-C*, *--canonical*::
bd67ca44 73_Canonical hex{plus}ASCII display_. Display the input offset in hexadecimal, followed by sixteen space-separated, two-column, hexadecimal bytes, followed by the same sixteen bytes in *%{underscore}p* format enclosed in *|* characters. Invoking the program as *hd* implies this option.
bbeadfdd 74//TRANSLATORS: Keep {plus} and {underscore} untranslated.
aad107b6
MB
75
76*-d*, *--two-bytes-decimal*::
bbeadfdd 77_Two-byte decimal display_. Display the input offset in hexadecimal, followed by eight space-separated, five-column, zero-filled, two-byte units of input data, in unsigned decimal, per line.
aad107b6
MB
78
79*-e*, *--format* _format_string_::
bbeadfdd 80Specify a format string to be used for displaying data.
aad107b6
MB
81
82*-f*, *--format-file* _file_::
bbeadfdd 83Specify a file that contains one or more newline-separated format strings. Empty lines and lines whose first non-blank character is a hash mark (#) are ignored.
aad107b6
MB
84
85*-L*, *--color*[=_when_]::
bbeadfdd 86Accept color units for the output. The optional argument _when_ can be *auto*, *never* or *always*. If the _when_ argument is omitted, it defaults to *auto*. The colors can be disabled; for the current built-in default see the *--help* output. See also the *Colors* subsection and the *COLORS* section below.
aad107b6
MB
87
88*-n*, *--length* _length_::
bbeadfdd 89Interpret only _length_ bytes of input.
aad107b6
MB
90
91*-o*, *--two-bytes-octal*::
bbeadfdd 92_Two-byte octal display_. Display the input offset in hexadecimal, followed by eight space-separated, six-column, zero-filled, two-byte quantities of input data, in octal, per line.
aad107b6
MB
93
94*-s*, *--skip* _offset_::
bbeadfdd 95Skip _offset_ bytes from the beginning of the input.
aad107b6
MB
96
97*-v*, *--no-squeezing*::
bbeadfdd 98The *-v* option causes *hexdump* to display all input data. Without the *-v* option, any number of groups of output lines which would be identical to the immediately preceding group of output lines (except for the input offsets), are replaced with a line comprised of a single asterisk.
aad107b6
MB
99
100*-x*, *--two-bytes-hex*::
bbeadfdd 101_Two-byte hexadecimal display_. Display the input offset in hexadecimal, followed by eight space-separated, four-column, zero-filled, two-byte quantities of input data, in hexadecimal, per line.
aad107b6 102
2b2d3172 103include::man-common/help-version.adoc[]
aad107b6
MB
104
105For each input file, *hexdump* sequentially copies the input to standard output, transforming the data according to the format strings specified by the *-e* and *-f* options, in the order that they were specified.
106
107== FORMATS
108
109A format string contains any number of format units, separated by whitespace. A format unit contains up to three items: an iteration count, a byte count, and a format.
110
111The iteration count is an optional positive integer, which defaults to one. Each format is applied iteration count times.
112
113The byte count is an optional positive integer. If specified it defines the number of bytes to be interpreted by each iteration of the format.
114
115If an iteration count and/or a byte count is specified, a single slash must be placed after the iteration count and/or before the byte count to disambiguate them. Any whitespace before or after the slash is ignored.
116
2b2d3172 117The format is required and must be surrounded by double quote (" ") marks. It is interpreted as a fprintf-style format string (see *fprintf*(3)), with the following exceptions:
aad107b6
MB
118
1191.::
bbeadfdd 120An asterisk (*) may not be used as a field width or precision.
aad107b6
MB
121
1222.::
e6743239 123A byte count or field precision _is_ required for each *s* conversion character (unlike the *fprintf*(3) default which prints the entire string if the precision is unspecified).
aad107b6
MB
124
1253.::
bbeadfdd 126The conversion characters *h*, *l*, *n*, *p*, and *q* are not supported.
aad107b6
MB
127
1284.::
bbeadfdd 129The single character escape sequences described in the C standard are supported:
aad107b6
MB
130
131____
132|===
133|NULL |\0
134|<alert character> |\a
135|<backspace> |\b
136|<form-feed> |\f
137|<newline> |\n
138|<carriage return> |\r
139|<tab> |\t
140|<vertical tab> |\v
141|===
142____
143
144=== Conversion strings
145
146The *hexdump* utility also supports the following additional conversion strings.
147
148*_a[dox]*::
bbeadfdd 149Display the input offset, cumulative across input files, of the next byte to be displayed. The appended characters *d*, *o*, and *x* specify the display base as decimal, octal or hexadecimal respectively.
aad107b6
MB
150
151*_A[dox]*::
bd67ca44 152Almost identical to the *_a* conversion string except that it is only performed once, when all of the input data has been processed.
aad107b6
MB
153
154*_c*::
bbeadfdd 155Output characters in the default character set. Non-printing characters are displayed in three-character, zero-padded octal, except for those representable by standard escape notation (see above), which are displayed as two-character strings.
aad107b6
MB
156
157*_p*::
bbeadfdd 158Output characters in the default character set. Non-printing characters are displayed as a single '*.*'.
aad107b6
MB
159
160*_u*::
bbeadfdd 161Output US ASCII characters, with the exception that control characters are displayed using the following, lower-case, names. Characters greater than 0xff, hexadecimal, are displayed as hexadecimal strings.
aad107b6
MB
162
163____
164|===
165|000 nul |001 soh |002 stx |003 etx |004 eot |005 enq
166|006 ack |007 bel |008 bs |009 ht |00A lf |00B vt
167|00C ff |00D cr |00E so |00F si |010 dle |011 dc1
168|012 dc2 |013 dc3 |014 dc4 |015 nak |016 syn |017 etb
169|018 can |019 em |01A sub |01B esc |01C fs |01D gs
170|01E rs |01F us |0FF del | | |
171|===
172____
173
174=== Colors
175
bd67ca44 176When put at the end of a format specifier, *hexdump* highlights the respective string with the color specified. Conditions, if present, are evaluated prior to highlighting.
aad107b6
MB
177
178*_L[color_unit_1,color_unit_2,...,color_unit_n]*
179
180The full syntax of a color unit is as follows:
181
182*[!]COLOR[:VALUE][@OFFSET_START[-END]]*
183
184*!*::
bbeadfdd 185Negate the condition. Please note that it only makes sense to negate a unit if both a value/string and an offset are specified. In that case the respective output string will be highlighted if and only if the value/string does not match the one at the offset.
aad107b6
MB
186
187*COLOR*::
bbeadfdd 188One of the 8 basic shell colors.
aad107b6
MB
189
190*VALUE*::
bd67ca44 191A value to be matched specified in hexadecimal, or octal base, or as a string. Please note that the usual C escape sequences are not interpreted by *hexdump* inside the color_units.
aad107b6
MB
192
193*OFFSET*::
bbeadfdd 194An offset or an offset range at which to check for a match. Please note that lone OFFSET_START uses the same value as END offset.
aad107b6
MB
195
196=== Counters
197
198The default and supported byte counts for the conversion characters are as follows:
199
200*%_c*, *%_p*, *%_u*, *%c*::
bbeadfdd 201One byte counts only.
aad107b6
MB
202
203*%d*, *%i*, *%o*, *%u*, *%X*, *%x*::
bbeadfdd 204Four byte default, one, two and four byte counts supported.
aad107b6
MB
205
206*%E*, *%e*, *%f*, *%G*, *%g*::
bbeadfdd 207Eight byte default, four byte counts supported.
aad107b6
MB
208
209The amount of data interpreted by each format string is the sum of the data required by each format unit, which is the iteration count times the byte count, or the iteration count times the number of bytes required by the format if the byte count is not specified.
210
211The input is manipulated in _blocks_, where a block is defined as the largest amount of data specified by any format string. Format strings interpreting less than an input block's worth of data, whose last format unit both interprets some number of bytes and does not have a specified iteration count, have the iteration count incremented until the entire input block has been processed or there is not enough data remaining in the block to satisfy the format string.
212
213If, either as a result of user specification or *hexdump* modifying the iteration count as described above, an iteration count is greater than one, no trailing whitespace characters are output during the last iteration.
214
215It is an error to specify a byte count as well as multiple conversion characters or strings unless all but one of the conversion characters or strings is *_a* or *_A*.
216
217If, as a result of the specification of the *-n* option or end-of-file being reached, input data only partially satisfies a format string, the input block is zero-padded sufficiently to display all available data (i.e., any format units overlapping the end of data will display some number of the zero bytes).
218
bbeadfdd
MB
219//TRANSLATORS: Keep {plus} untranslated.
220Further output by such format strings is replaced by an equivalent number of spaces. An equivalent number of spaces is defined as the number of spaces output by an *s* conversion character with the same field width and precision as the original conversion character or conversion string but with any '*{plus}*', ' ', '*#*' conversion flag characters removed, and referencing a NULL string.
aad107b6
MB
221
222If no format strings are specified, the default display is very similar to the *-x* output format (the *-x* option causes more space to be used between format units than in the default output).
223
224== EXIT STATUS
225
226*hexdump* exits 0 on success and > 0 if an error occurred.
227
228== CONFORMING TO
229
230The *hexdump* utility is expected to be IEEE Std 1003.2 ("POSIX.2") compatible.
231
232== EXAMPLES
233
234Display the input in perusal format:
235
236....
237 "%06.6_ao " 12/1 "%3_u "
238 "\t" "%_p "
239 "\n"
240....
241
242Implement the *-x* option:
243
244....
245 "%07.7_Ax\n"
246 "%07.7_ax " 8/2 "%04x " "\n"
247....
248
249MBR Boot Signature example: Highlight the addresses cyan and the bytes at offsets 510 and 511 green if their value is 0xAA55, red otherwise.
250
251....
252 "%07.7_Ax_L[cyan]\n"
253 "%07.7_ax_L[cyan] " 8/2 " %04x_L[green:0xAA55@510-511,!red:0xAA55@510-511] " "\n"
254....
255
6c62faf1 256include::man-common/colors.adoc[]
aad107b6 257
625e9c61 258include::man-common/bugreports.adoc[]
aad107b6 259
625e9c61 260include::man-common/footer.adoc[]
aad107b6
MB
261
262ifdef::translation[]
625e9c61 263include::man-common/translation.adoc[]
aad107b6 264endif::[]