RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 1 | .TH XXD 1 "May 2024" "Manual page for xxd" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | .\" |
| 3 | .\" 21st May 1996 |
| 4 | .\" Man page author: |
| 5 | .\" Tony Nugent <tony@sctnugen.ppp.gu.edu.au> <T.Nugent@sct.gu.edu.au> |
| 6 | .\" Changes by Bram Moolenaar <Bram@vim.org> |
| 7 | .SH NAME |
| 8 | .I xxd |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 9 | \- make a hex dump or do the reverse. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 10 | .SH SYNOPSIS |
| 11 | .B xxd |
| 12 | \-h[elp] |
| 13 | .br |
| 14 | .B xxd |
| 15 | [options] [infile [outfile]] |
| 16 | .br |
| 17 | .B xxd |
| 18 | \-r[evert] [options] [infile [outfile]] |
| 19 | .SH DESCRIPTION |
| 20 | .I xxd |
| 21 | creates a hex dump of a given file or standard input. |
| 22 | It can also convert a hex dump back to its original binary form. |
| 23 | Like |
Bram Moolenaar | 4317d9b | 2005-03-18 20:25:31 +0000 | [diff] [blame] | 24 | .BR uuencode (1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 25 | and |
Bram Moolenaar | 4317d9b | 2005-03-18 20:25:31 +0000 | [diff] [blame] | 26 | .BR uudecode (1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 27 | it allows the transmission of binary data in a `mail-safe' ASCII representation, |
| 28 | but has the advantage of decoding to standard output. |
| 29 | Moreover, it can be used to perform binary file patching. |
| 30 | .SH OPTIONS |
| 31 | If no |
| 32 | .I infile |
| 33 | is given, standard input is read. |
| 34 | If |
| 35 | .I infile |
| 36 | is specified as a |
| 37 | .RB \` \- ' |
| 38 | character, then input is taken from standard input. |
| 39 | If no |
| 40 | .I outfile |
| 41 | is given (or a |
| 42 | .RB \` \- ' |
| 43 | character is in its place), results are sent to standard output. |
| 44 | .PP |
| 45 | Note that a "lazy" parser is used which does not check for more than the first |
| 46 | option letter, unless the option is followed by a parameter. |
| 47 | Spaces between a single option letter and its parameter are optional. |
| 48 | Parameters to options can be specified in decimal, hexadecimal or octal |
| 49 | notation. |
| 50 | Thus |
| 51 | .BR \-c8 , |
| 52 | .BR "\-c 8" , |
| 53 | .B \-c 010 |
| 54 | and |
| 55 | .B \-cols 8 |
| 56 | are all equivalent. |
| 57 | .PP |
| 58 | .TP |
| 59 | .IR \-a " | " \-autoskip |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 60 | Toggle autoskip: A single '*' replaces NUL-lines. Default off. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 61 | .TP |
| 62 | .IR \-b " | " \-bits |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 63 | Switch to bits (binary digits) dump, rather than hex dump. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 64 | This option writes octets as eight digits "1"s and "0"s instead of a normal |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 65 | hexadecimal dump. Each line is preceded by a line number in hexadecimal and |
Andre Chang | 1502272 | 2024-09-15 20:03:05 +0200 | [diff] [blame] | 66 | followed by an ASCII (or EBCDIC) representation. The command line switch |
| 67 | \-p does not work with this mode. Can be combined with \-i. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 68 | .TP |
| 69 | .IR "\-c cols " | " \-cols cols" |
Bram Moolenaar | 79cf7c0 | 2018-04-03 14:21:16 +0200 | [diff] [blame] | 70 | Format |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 71 | .RI < cols > |
| 72 | octets per line. Default 16 (\-i: 12, \-ps: 30, \-b: 6). Max 256. |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 73 | No maximum for \-ps. With \-ps, 0 results in one long line of output. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 74 | .TP |
Bram Moolenaar | 79cf7c0 | 2018-04-03 14:21:16 +0200 | [diff] [blame] | 75 | .IR \-C " | " \-capitalize |
| 76 | Capitalize variable names in C include file style, when using \-i. |
| 77 | .TP |
Lennard Hofmann | 6779719 | 2024-05-10 14:17:26 +0200 | [diff] [blame] | 78 | .I \-d |
| 79 | show offset in decimal instead of hex. |
| 80 | .TP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 81 | .IR \-E " | " \-EBCDIC |
| 82 | Change the character encoding in the righthand column from ASCII to EBCDIC. |
| 83 | This does not change the hexadecimal representation. The option is |
| 84 | meaningless in combinations with \-r, \-p or \-i. |
| 85 | .TP |
Bram Moolenaar | 4dcdf29 | 2015-03-05 17:51:15 +0100 | [diff] [blame] | 86 | .IR \-e |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 87 | Switch to little-endian hex dump. |
Bram Moolenaar | 4dcdf29 | 2015-03-05 17:51:15 +0100 | [diff] [blame] | 88 | This option treats byte groups as words in little-endian byte order. |
| 89 | The default grouping of 4 bytes may be changed using |
| 90 | .RI "" \-g . |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 91 | This option only applies to the hex dump, leaving the ASCII (or EBCDIC) |
Bram Moolenaar | 4dcdf29 | 2015-03-05 17:51:15 +0100 | [diff] [blame] | 92 | representation unchanged. |
| 93 | The command line switches |
| 94 | \-r, \-p, \-i do not work with this mode. |
| 95 | .TP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 96 | .IR "\-g bytes " | " \-groupsize bytes" |
Bram Moolenaar | 79cf7c0 | 2018-04-03 14:21:16 +0200 | [diff] [blame] | 97 | Separate the output of every |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 98 | .RI < bytes > |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 99 | bytes (two hex characters or eight bit digits each) by a whitespace. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 100 | Specify |
| 101 | .I \-g 0 |
| 102 | to suppress grouping. |
| 103 | .RI < Bytes "> defaults to " 2 |
Bram Moolenaar | 4dcdf29 | 2015-03-05 17:51:15 +0100 | [diff] [blame] | 104 | in normal mode, \fI4\fP in little-endian mode and \fI1\fP in bits mode. |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 105 | Grouping does not apply to PostScript or include style. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 106 | .TP |
| 107 | .IR \-h " | " \-help |
Bram Moolenaar | 79cf7c0 | 2018-04-03 14:21:16 +0200 | [diff] [blame] | 108 | Print a summary of available commands and exit. No hex dumping is performed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 109 | .TP |
| 110 | .IR \-i " | " \-include |
Bram Moolenaar | 79cf7c0 | 2018-04-03 14:21:16 +0200 | [diff] [blame] | 111 | Output in C include file style. A complete static array definition is written |
Andre Chang | 1502272 | 2024-09-15 20:03:05 +0200 | [diff] [blame] | 112 | (named after the input file), unless xxd reads from stdin. Can be combined |
| 113 | with \-b. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 114 | .TP |
| 115 | .IR "\-l len " | " \-len len" |
Bram Moolenaar | 79cf7c0 | 2018-04-03 14:21:16 +0200 | [diff] [blame] | 116 | Stop after writing |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 117 | .RI < len > |
| 118 | octets. |
| 119 | .TP |
David Gow | 83e1180 | 2022-06-29 20:24:49 +0100 | [diff] [blame] | 120 | .I "\-n name " | " \-name name" |
| 121 | Override the variable name output when \-i is used. The array is named |
| 122 | \fIname\fP and the length is named \fIname\fP_len. |
| 123 | .TP |
Bram Moolenaar | 4dcdf29 | 2015-03-05 17:51:15 +0100 | [diff] [blame] | 124 | .I \-o offset |
Bram Moolenaar | 79cf7c0 | 2018-04-03 14:21:16 +0200 | [diff] [blame] | 125 | Add |
Bram Moolenaar | 4dcdf29 | 2015-03-05 17:51:15 +0100 | [diff] [blame] | 126 | .RI < offset > |
| 127 | to the displayed file position. |
| 128 | .TP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 129 | .IR \-p " | " \-ps " | " \-postscript " | " \-plain |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 130 | Output in PostScript continuous hex dump style. Also known as plain hex dump |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 131 | style. |
| 132 | .TP |
| 133 | .IR \-r " | " \-revert |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 134 | Reverse operation: convert (or patch) hex dump into binary. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 135 | If not writing to stdout, xxd writes into its output file without truncating |
| 136 | it. Use the combination |
| 137 | .I \-r \-p |
| 138 | to read plain hexadecimal dumps without line number information and without a |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 139 | particular column layout. Additional whitespace and line breaks are allowed |
tristhaus | 85f4521 | 2023-10-06 19:51:13 +0200 | [diff] [blame] | 140 | anywhere. Use the combination |
| 141 | .I \-r \-b |
| 142 | to read a bits dump instead of a hex dump. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 143 | .TP |
K.Takata | f6fc255 | 2023-09-01 18:41:04 +0200 | [diff] [blame] | 144 | .IR \-R " " when |
Lennard Hofmann | 6779719 | 2024-05-10 14:17:26 +0200 | [diff] [blame] | 145 | In the output the hex-value and the value are both colored with the same color |
Christian Brabandt | b74ebfc | 2023-10-03 16:55:18 +0200 | [diff] [blame] | 146 | depending on the hex-value. Mostly helping to differentiate printable and |
| 147 | non-printable characters. |
K.Takata | f6fc255 | 2023-09-01 18:41:04 +0200 | [diff] [blame] | 148 | .I \fIwhen\fP |
Aapo Rantalainen | e2528ae | 2023-08-31 17:58:13 +0200 | [diff] [blame] | 149 | is |
Lennard Hofmann | 6779719 | 2024-05-10 14:17:26 +0200 | [diff] [blame] | 150 | .BR never ", " always ", or " auto " (default: auto). |
Christian Brabandt | b74ebfc | 2023-10-03 16:55:18 +0200 | [diff] [blame] | 151 | When the |
| 152 | .BR $NO_COLOR |
| 153 | environment variable is set, colorization will be disabled. |
Aapo Rantalainen | e2528ae | 2023-08-31 17:58:13 +0200 | [diff] [blame] | 154 | .TP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 155 | .I \-seek offset |
| 156 | When used after |
Bram Moolenaar | 4317d9b | 2005-03-18 20:25:31 +0000 | [diff] [blame] | 157 | .IR \-r : |
| 158 | revert with |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 159 | .RI < offset > |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 160 | added to file positions found in hex dump. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 161 | .TP |
Bram Moolenaar | 4317d9b | 2005-03-18 20:25:31 +0000 | [diff] [blame] | 162 | .I \-s [+][\-]seek |
Bram Moolenaar | 79cf7c0 | 2018-04-03 14:21:16 +0200 | [diff] [blame] | 163 | Start at |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 164 | .RI < seek > |
| 165 | bytes abs. (or rel.) infile offset. |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 166 | \fI+ \fRindicates that the seek is relative to the current stdin file position |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 167 | (meaningless when not reading from stdin). \fI\- \fRindicates that the seek |
| 168 | should be that many characters from the end of the input (or if combined with |
Bram Moolenaar | 4317d9b | 2005-03-18 20:25:31 +0000 | [diff] [blame] | 169 | \fI+\fR: before the current stdin file position). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 170 | Without \-s option, xxd starts at the current file position. |
| 171 | .TP |
| 172 | .I \-u |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 173 | Use upper-case hex letters. Default is lower-case. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 174 | .TP |
| 175 | .IR \-v " | " \-version |
Bram Moolenaar | 79cf7c0 | 2018-04-03 14:21:16 +0200 | [diff] [blame] | 176 | Show version string. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 177 | .SH CAVEATS |
| 178 | .PP |
| 179 | .I xxd \-r |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 180 | has some built-in magic while evaluating line number information. |
| 181 | If the output file is seekable, then the line numbers at the start of each |
| 182 | hex dump line may be out of order, lines may be missing, or overlapping. In |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 183 | these cases xxd will lseek(2) to the next position. If the output file is not |
| 184 | seekable, only gaps are allowed, which will be filled by null-bytes. |
| 185 | .PP |
| 186 | .I xxd \-r |
| 187 | never generates parse errors. Garbage is silently skipped. |
| 188 | .PP |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 189 | When editing hex dumps, please note that |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 190 | .I xxd \-r |
| 191 | skips everything on the input line after reading enough columns of hexadecimal |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 192 | data (see option \-c). This also means that changes to the printable ASCII (or |
| 193 | EBCDIC) columns are always ignored. Reverting a plain (or PostScript) style |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 194 | hex dump with xxd \-r \-p does not depend on the correct number of columns. |
| 195 | Here, anything that looks like a pair of hex digits is interpreted. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 196 | .PP |
| 197 | Note the difference between |
| 198 | .br |
| 199 | \fI% xxd \-i file\fR |
| 200 | .br |
| 201 | and |
| 202 | .br |
Bram Moolenaar | 4317d9b | 2005-03-18 20:25:31 +0000 | [diff] [blame] | 203 | \fI% xxd \-i < file\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 204 | .PP |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 205 | .I xxd \-s +seek |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 206 | may be different from |
Bram Moolenaar | 4317d9b | 2005-03-18 20:25:31 +0000 | [diff] [blame] | 207 | .IR "xxd \-s seek" , |
| 208 | as lseek(2) is used to "rewind" input. A '+' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 209 | makes a difference if the input source is stdin, and if stdin's file position |
| 210 | is not at the start of the file by the time xxd is started and given its input. |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 211 | The following examples may help to clarify (or further confuse!): |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 212 | .PP |
| 213 | Rewind stdin before reading; needed because the `cat' has already read to the |
| 214 | end of stdin. |
| 215 | .br |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 216 | \fI% sh \-c "cat > plain_copy; xxd \-s 0 > hex_copy" < file\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 217 | .PP |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 218 | Hex dump from file position 0x480 (=1024+128) onwards. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 219 | The `+' sign means "relative to the current position", thus the `128' adds to |
| 220 | the 1k where dd left off. |
| 221 | .br |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 222 | \fI% sh \-c "dd of=plain_snippet bs=1k count=1; xxd \-s +128 > hex_snippet" < file\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 223 | .PP |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 224 | Hex dump from file position 0x100 (=1024\-768) onwards. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 225 | .br |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 226 | \fI% sh \-c "dd of=plain_snippet bs=1k count=1; xxd \-s +\-768 > hex_snippet" < file\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 227 | .PP |
| 228 | However, this is a rare situation and the use of `+' is rarely needed. |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 229 | The author prefers to monitor the effect of xxd with strace(1) or truss(1), |
| 230 | whenever \-s is used. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 231 | .SH EXAMPLES |
| 232 | .PP |
| 233 | .br |
| 234 | Print everything but the first three lines (hex 0x30 bytes) of |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 235 | .BR file . |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 236 | .br |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 237 | \fI% xxd \-s 0x30 file\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 238 | .PP |
| 239 | .br |
| 240 | Print 3 lines (hex 0x30 bytes) from the end of |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 241 | .BR file . |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 242 | .br |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 243 | \fI% xxd \-s \-0x30 file\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 244 | .PP |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 245 | Note: The results of the examples below are relevant to the xxd.1 man page as of |
| 246 | May 2024 |
| 247 | .PP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 248 | .br |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 249 | Print 120 bytes as a continuous hex dump with 20 octets per line. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 250 | .br |
| 251 | \fI% xxd \-l 120 \-ps \-c 20 xxd.1\fR |
| 252 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 253 | 2e544820585844203120224d6179203230323422 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 254 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 255 | 20224d616e75616c207061676520666f72207878 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 256 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 257 | 64220a2e5c220a2e5c222032317374204d617920 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 258 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 259 | 313939360a2e5c22204d616e2070616765206175 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 260 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 261 | 74686f723a0a2e5c2220202020546f6e79204e75 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 262 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 263 | 67656e74203c746f6e79407363746e7567656e2e |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 264 | .br |
| 265 | |
| 266 | .br |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 267 | Hex dump the first 120 bytes of this man page with 12 octets per line. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 268 | .br |
| 269 | \fI% xxd \-l 120 \-c 12 xxd.1\fR |
| 270 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 271 | 00000000: 2e54 4820 5858 4420 3120 224d .TH XXD 1 "M |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 272 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 273 | 0000000c: 6179 2032 3032 3422 2022 4d61 ay 2024" "Ma |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 274 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 275 | 00000018: 6e75 616c 2070 6167 6520 666f nual page fo |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 276 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 277 | 00000024: 7220 7878 6422 0a2e 5c22 0a2e r xxd"..\\".. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 278 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 279 | 00000030: 5c22 2032 3173 7420 4d61 7920 \\" 21st May |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 280 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 281 | 0000003c: 3139 3936 0a2e 5c22 204d 616e 1996..\\" Man |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 282 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 283 | 00000048: 2070 6167 6520 6175 7468 6f72 page author |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 284 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 285 | 00000054: 3a0a 2e5c 2220 2020 2054 6f6e :..\\" Ton |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 286 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 287 | 00000060: 7920 4e75 6765 6e74 203c 746f y Nugent <to |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 288 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 289 | 0000006c: 6e79 4073 6374 6e75 6765 6e2e ny@sctnugen. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 290 | .PP |
| 291 | .br |
| 292 | Display just the date from the file xxd.1 |
| 293 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 294 | \fI% xxd \-s 0x33 \-l 13 \-c 13 xxd.1\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 295 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 296 | 00000033: 3231 7374 204d 6179 2031 3939 36 21st May 1996 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 297 | .PP |
| 298 | .br |
| 299 | Copy |
| 300 | .B input_file |
| 301 | to |
| 302 | .B output_file |
| 303 | and prepend 100 bytes of value 0x00. |
| 304 | .br |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 305 | \fI% xxd input_file | xxd \-r \-s 100 > output_file\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 306 | .br |
| 307 | |
| 308 | .br |
| 309 | Patch the date in the file xxd.1 |
| 310 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 311 | \fI% echo "0000034: 3574 68" | xxd \-r \- xxd.1\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 312 | .br |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 313 | \fI% xxd \-s 0x33 \-l 13 \-c 13 xxd.1\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 314 | .br |
RestorerZ | 8f3f785 | 2024-08-16 21:03:58 +0200 | [diff] [blame] | 315 | 00000033: 3235 7468 204d 6179 2031 3939 36 25th May 1996 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 316 | .PP |
| 317 | .br |
| 318 | Create a 65537 byte file with all bytes 0x00, |
| 319 | except for the last one which is 'A' (hex 0x41). |
| 320 | .br |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 321 | \fI% echo "010000: 41" | xxd \-r > file\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 322 | .PP |
| 323 | .br |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 324 | Hex dump this file with autoskip. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 325 | .br |
| 326 | \fI% xxd \-a \-c 12 file\fR |
| 327 | .br |
RestorerZ | 8f3f785 | 2024-08-16 21:03:58 +0200 | [diff] [blame] | 328 | 00000000: 0000 0000 0000 0000 0000 0000 ............ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 329 | .br |
| 330 | * |
| 331 | .br |
RestorerZ | 8f3f785 | 2024-08-16 21:03:58 +0200 | [diff] [blame] | 332 | 0000fffc: 0000 0000 41 ....A |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 333 | .PP |
| 334 | Create a 1 byte file containing a single 'A' character. |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 335 | The number after '\-r \-s' adds to the line numbers found in the file; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 336 | in effect, the leading bytes are suppressed. |
| 337 | .br |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 338 | \fI% echo "010000: 41" | xxd \-r \-s \-0x10000 > file\fR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 339 | .PP |
| 340 | Use xxd as a filter within an editor such as |
| 341 | .B vim(1) |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 342 | to hex dump a region marked between `a' and `z'. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 343 | .br |
| 344 | \fI:'a,'z!xxd\fR |
| 345 | .PP |
| 346 | Use xxd as a filter within an editor such as |
| 347 | .B vim(1) |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 348 | to recover a binary hex dump marked between `a' and `z'. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 349 | .br |
| 350 | \fI:'a,'z!xxd \-r\fR |
| 351 | .PP |
| 352 | Use xxd as a filter within an editor such as |
| 353 | .B vim(1) |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 354 | to recover one line of a hex dump. Move the cursor over the line and type: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 355 | .br |
| 356 | \fI!!xxd \-r\fR |
| 357 | .PP |
| 358 | Read single characters from a serial line |
| 359 | .br |
| 360 | \fI% xxd \-c1 < /dev/term/b &\fR |
| 361 | .br |
| 362 | \fI% stty < /dev/term/b \-echo \-opost \-isig \-icanon min 1\fR |
| 363 | .br |
| 364 | \fI% echo \-n foo > /dev/term/b\fR |
| 365 | .PP |
| 366 | .SH "RETURN VALUES" |
| 367 | The following error values are returned: |
| 368 | .TP |
| 369 | 0 |
| 370 | no errors encountered. |
| 371 | .TP |
| 372 | \-1 |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 373 | operation not supported |
| 374 | \%(\c |
| 375 | .I \%xxd \-r \-i |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 376 | still impossible). |
| 377 | .TP |
| 378 | 1 |
| 379 | error while parsing options. |
| 380 | .TP |
| 381 | 2 |
| 382 | problems with input file. |
| 383 | .TP |
| 384 | 3 |
| 385 | problems with output file. |
| 386 | .TP |
| 387 | 4,5 |
| 388 | desired seek position is unreachable. |
| 389 | .SH "SEE ALSO" |
| 390 | uuencode(1), uudecode(1), patch(1) |
| 391 | .br |
| 392 | .SH WARNINGS |
Matthias Braun | 02551c9 | 2023-08-13 19:20:35 +0200 | [diff] [blame] | 393 | The tool's weirdness matches its creator's brain. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 394 | Use entirely at your own risk. Copy files. Trace it. Become a wizard. |
| 395 | .br |
| 396 | .SH VERSION |
RestorerZ | 81b62dd | 2024-08-15 21:39:33 +0200 | [diff] [blame] | 397 | This manual page documents xxd version 1.7 from 2024-05. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 398 | .SH AUTHOR |
| 399 | .br |
| 400 | (c) 1990-1997 by Juergen Weigert |
| 401 | .br |
Bram Moolenaar | 3991dab | 2006-03-27 17:01:56 +0000 | [diff] [blame] | 402 | <jnweiger@informatik.uni\-erlangen.de> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 403 | .LP |
| 404 | Distribute freely and credit me, |
| 405 | .br |
| 406 | make money and share with me, |
| 407 | .br |
| 408 | lose money and don't ask me. |
| 409 | .PP |
| 410 | Manual page started by Tony Nugent |
| 411 | .br |
| 412 | <tony@sctnugen.ppp.gu.edu.au> <T.Nugent@sct.gu.edu.au> |
| 413 | .br |
| 414 | Small changes by Bram Moolenaar. |
| 415 | Edited by Juergen Weigert. |
| 416 | .PP |