|
NAMEhdump, od - displays (dumps) binary contents of a fileSYNOPSIShdump [options] [file [starting_address[.][b|B] [count]]]hdump [options] [file...] od [options] [file [starting_address[.][b|B]]] od [options] [file...] xpg4/bin/od [options] [file [starting_address[.][b|B]]] xpg4/bin/od [options] [file...] DESCRIPTIONHdump displays the contents of a file in 16-bit words unless otherwise specified (see options below). It dumps the data in hexadecimal unless otherwise specified (see options below).Hdump assumes the starting_address and the count are in decimal unless there is a leading 0--interpreted as octal, or a leading 0x--interpreted as hexadecimal (as in C). If the starting_address is followed by a 'b', the number is multiplied by 512, if the starting_address is followed by a 'B', the number is multiplied by 512. The output radix of the label is hexadecimal by default and may be modified by the radix of the starting_address. If the starting_address is specified in hexadecimal, the label will be displayed in hexadecimal too, if the starting_address is specified in octal, the label will be displayed in octal. A decimal radix of the label will be displayed if the starting_address is followed by a dot. If the starting address is odd, it is rounded down to the next even value. The default size of displayed objects is short unless otherwise mentioned. For the od(1) features see the od(1) man page. OPTIONS
The type specification characters d, f, o, u, and x can be followed by an optional size specifier. For the types d, o, u, and x, this may be one of: 1, 2, 4, 8, C, S, I, and L. For the type f, this may be one of: F, D, and L. A -t option may have multiple type arguments and there may be multiple -t options on the command line.
Address label radix depends on starting address radix (decimal if ends with .) 'b' or 'B' after starting address multiplies with 512. SEE ALSOod(1).NOTESnone
Visit the GSP FreeBSD Man Page Interface. |