Lines Matching +full:input +full:- +full:only
40 .Bk -words
49 .Bk -words
57 the standard input, if no files are specified, in a user specified
61 .Bl -tag -width indent
63 .Em One-byte octal display .
64 Display the input offset in hexadecimal, followed by sixteen
65 space-separated, three column, zero-filled, bytes of input data,
68 .Em One-byte character display .
69 Display the input offset in hexadecimal, followed by sixteen
70 space-separated, three column, space-filled, characters of input
74 Display the input offset in hexadecimal, followed by sixteen
75 space-separated, two column, hexadecimal bytes, followed by the
82 .Em Two-byte decimal display .
83 Display the input offset in hexadecimal, followed by eight
84 space-separated, five column, zero-filled, two-byte units
85 of input data, in unsigned decimal, per line.
90 Empty lines and lines whose first non-blank character is a hash mark
94 Interpret only
96 bytes of input.
98 .Em Two-byte octal display .
99 Display the input offset in hexadecimal, followed by eight
100 space-separated, six column, zero-filled, two byte quantities of
101 input data, in octal, per line.
105 bytes from the beginning of the input.
135 to display all input data.
140 for the input offsets), are replaced with a line comprised of a
143 .Em Two-byte hexadecimal display .
144 Display the input offset in hexadecimal, followed by eight, space
145 separated, four column, zero-filled, two-byte quantities of input
149 For each input file,
151 sequentially copies the input to standard output, transforming the
178 It is interpreted as a fprintf-style format string (see
182 .Bl -bullet -offset indent
198 .Bd -ragged -offset indent -compact
199 .Bl -column <alert_character>
203 .It "<form-feed> \ef"
215 .Bl -tag -width Fl
217 Display the input offset, cumulative across input files, of the
229 conversion string except that it is only performed
230 once, when all of the input data has been processed.
233 Nonprinting characters are displayed in three character, zero-padded
244 displayed using the following, lower-case, names.
247 .Bl -column 000_nu 001_so 002_st 003_et 004_eo
259 .Bl -tag -width "Xc,_Xc,_Xc,_Xc,_Xc,_Xc" -offset indent
261 One byte counts only.
279 The input is manipulated in ``blocks'', where a block is defined as the
281 Format strings interpreting less than an input block's worth of data,
284 incremented until the entire input block has been processed or there
303 option or end-of-file being reached, input data only partially
304 satisfies a format string, the input block is zero-padded sufficiently
327 .Ex -std hexdump hd
329 Dump input in canonical (hex+ASCII) form:
330 .Bd -literal -offset indent
331 $ echo "FreeBSD: The power to serve" | hexdump -C
337 Same as above but skipping the first 4 bytes of stdin and interpreting only 3
338 bytes of input:
339 .Bd -literal -offset indent
340 $ echo "FreeBSD: The power to serve" | hexdump -C -s 4 -n 3
348 .Bd -literal -offset indent
354 Dump input in canonical form using the format in
356 .Bd -literal -offset indent
357 $ echo "FreeBSD" | hexdump -f format.txt -C
368 .Bd -literal -offset indent
373 Dump input in canonical form using the format in
375 .Bd -literal -offset indent
376 $ echo "FreeBSD: The power to serve" | hexdump -f format.txt -C