blob: 7cd6ae8c77f92611e18ca5932aa54b1a2e865b8e [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001.TH XXD 1 "August 1996" "Manual page for xxd"
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 Braun02551c92023-08-13 19:20:35 +02009\- make a hex dump or do the reverse.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010.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
21creates a hex dump of a given file or standard input.
22It can also convert a hex dump back to its original binary form.
23Like
Bram Moolenaar4317d9b2005-03-18 20:25:31 +000024.BR uuencode (1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000025and
Bram Moolenaar4317d9b2005-03-18 20:25:31 +000026.BR uudecode (1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000027it allows the transmission of binary data in a `mail-safe' ASCII representation,
28but has the advantage of decoding to standard output.
29Moreover, it can be used to perform binary file patching.
30.SH OPTIONS
31If no
32.I infile
33is given, standard input is read.
34If
35.I infile
36is specified as a
37.RB \` \- '
38character, then input is taken from standard input.
39If no
40.I outfile
41is given (or a
42.RB \` \- '
43character is in its place), results are sent to standard output.
44.PP
45Note that a "lazy" parser is used which does not check for more than the first
46option letter, unless the option is followed by a parameter.
47Spaces between a single option letter and its parameter are optional.
48Parameters to options can be specified in decimal, hexadecimal or octal
49notation.
50Thus
51.BR \-c8 ,
52.BR "\-c 8" ,
53.B \-c 010
54and
55.B \-cols 8
56are all equivalent.
57.PP
58.TP
59.IR \-a " | " \-autoskip
Matthias Braun02551c92023-08-13 19:20:35 +020060Toggle autoskip: A single '*' replaces NUL-lines. Default off.
Bram Moolenaar071d4272004-06-13 20:20:40 +000061.TP
62.IR \-b " | " \-bits
Matthias Braun02551c92023-08-13 19:20:35 +020063Switch to bits (binary digits) dump, rather than hex dump.
Bram Moolenaar071d4272004-06-13 20:20:40 +000064This option writes octets as eight digits "1"s and "0"s instead of a normal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000065hexadecimal dump. Each line is preceded by a line number in hexadecimal and
Matthias Braun02551c92023-08-13 19:20:35 +020066followed by an ASCII (or EBCDIC) representation. The command line switches
Bram Moolenaar071d4272004-06-13 20:20:40 +000067\-r, \-p, \-i do not work with this mode.
68.TP
69.IR "\-c cols " | " \-cols cols"
Bram Moolenaar79cf7c02018-04-03 14:21:16 +020070Format
Bram Moolenaar071d4272004-06-13 20:20:40 +000071.RI < cols >
72octets per line. Default 16 (\-i: 12, \-ps: 30, \-b: 6). Max 256.
Matthias Braun02551c92023-08-13 19:20:35 +020073No maximum for \-ps. With \-ps, 0 results in one long line of output.
Bram Moolenaar071d4272004-06-13 20:20:40 +000074.TP
Bram Moolenaar79cf7c02018-04-03 14:21:16 +020075.IR \-C " | " \-capitalize
76Capitalize variable names in C include file style, when using \-i.
77.TP
Bram Moolenaar071d4272004-06-13 20:20:40 +000078.IR \-E " | " \-EBCDIC
79Change the character encoding in the righthand column from ASCII to EBCDIC.
80This does not change the hexadecimal representation. The option is
81meaningless in combinations with \-r, \-p or \-i.
82.TP
Bram Moolenaar4dcdf292015-03-05 17:51:15 +010083.IR \-e
Matthias Braun02551c92023-08-13 19:20:35 +020084Switch to little-endian hex dump.
Bram Moolenaar4dcdf292015-03-05 17:51:15 +010085This option treats byte groups as words in little-endian byte order.
86The default grouping of 4 bytes may be changed using
87.RI "" \-g .
Matthias Braun02551c92023-08-13 19:20:35 +020088This option only applies to the hex dump, leaving the ASCII (or EBCDIC)
Bram Moolenaar4dcdf292015-03-05 17:51:15 +010089representation unchanged.
90The command line switches
91\-r, \-p, \-i do not work with this mode.
92.TP
Bram Moolenaar071d4272004-06-13 20:20:40 +000093.IR "\-g bytes " | " \-groupsize bytes"
Bram Moolenaar79cf7c02018-04-03 14:21:16 +020094Separate the output of every
Bram Moolenaar071d4272004-06-13 20:20:40 +000095.RI < bytes >
Matthias Braun02551c92023-08-13 19:20:35 +020096bytes (two hex characters or eight bit digits each) by a whitespace.
Bram Moolenaar071d4272004-06-13 20:20:40 +000097Specify
98.I \-g 0
99to suppress grouping.
100.RI < Bytes "> defaults to " 2
Bram Moolenaar4dcdf292015-03-05 17:51:15 +0100101in normal mode, \fI4\fP in little-endian mode and \fI1\fP in bits mode.
Matthias Braun02551c92023-08-13 19:20:35 +0200102Grouping does not apply to PostScript or include style.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000103.TP
104.IR \-h " | " \-help
Bram Moolenaar79cf7c02018-04-03 14:21:16 +0200105Print a summary of available commands and exit. No hex dumping is performed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000106.TP
107.IR \-i " | " \-include
Bram Moolenaar79cf7c02018-04-03 14:21:16 +0200108Output in C include file style. A complete static array definition is written
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109(named after the input file), unless xxd reads from stdin.
110.TP
111.IR "\-l len " | " \-len len"
Bram Moolenaar79cf7c02018-04-03 14:21:16 +0200112Stop after writing
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113.RI < len >
114octets.
115.TP
David Gow83e11802022-06-29 20:24:49 +0100116.I "\-n name " | " \-name name"
117Override the variable name output when \-i is used. The array is named
118\fIname\fP and the length is named \fIname\fP_len.
119.TP
Bram Moolenaar4dcdf292015-03-05 17:51:15 +0100120.I \-o offset
Bram Moolenaar79cf7c02018-04-03 14:21:16 +0200121Add
Bram Moolenaar4dcdf292015-03-05 17:51:15 +0100122.RI < offset >
123to the displayed file position.
124.TP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125.IR \-p " | " \-ps " | " \-postscript " | " \-plain
Matthias Braun02551c92023-08-13 19:20:35 +0200126Output in PostScript continuous hex dump style. Also known as plain hex dump
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127style.
128.TP
129.IR \-r " | " \-revert
Matthias Braun02551c92023-08-13 19:20:35 +0200130Reverse operation: convert (or patch) hex dump into binary.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131If not writing to stdout, xxd writes into its output file without truncating
132it. Use the combination
133.I \-r \-p
134to read plain hexadecimal dumps without line number information and without a
Matthias Braun02551c92023-08-13 19:20:35 +0200135particular column layout. Additional whitespace and line breaks are allowed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000136anywhere.
137.TP
K.Takataf6fc2552023-09-01 18:41:04 +0200138.IR \-R " " when
Christian Brabandtb74ebfc2023-10-03 16:55:18 +0200139In output the hex-value and the value are both colored with the same color
140depending on the hex-value. Mostly helping to differentiate printable and
141non-printable characters.
K.Takataf6fc2552023-09-01 18:41:04 +0200142.I \fIwhen\fP
Aapo Rantalainene2528ae2023-08-31 17:58:13 +0200143is
144.BR never ", " always ", or " auto .
Christian Brabandtb74ebfc2023-10-03 16:55:18 +0200145When the
146.BR $NO_COLOR
147environment variable is set, colorization will be disabled.
Aapo Rantalainene2528ae2023-08-31 17:58:13 +0200148.TP
Bram Moolenaar071d4272004-06-13 20:20:40 +0000149.I \-seek offset
150When used after
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000151.IR \-r :
152revert with
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153.RI < offset >
Matthias Braun02551c92023-08-13 19:20:35 +0200154added to file positions found in hex dump.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155.TP
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000156.I \-s [+][\-]seek
Bram Moolenaar79cf7c02018-04-03 14:21:16 +0200157Start at
Bram Moolenaar071d4272004-06-13 20:20:40 +0000158.RI < seek >
159bytes abs. (or rel.) infile offset.
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000160\fI+ \fRindicates that the seek is relative to the current stdin file position
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161(meaningless when not reading from stdin). \fI\- \fRindicates that the seek
162should be that many characters from the end of the input (or if combined with
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000163\fI+\fR: before the current stdin file position).
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164Without \-s option, xxd starts at the current file position.
165.TP
166.I \-u
Matthias Braun02551c92023-08-13 19:20:35 +0200167Use upper-case hex letters. Default is lower-case.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000168.TP
169.IR \-v " | " \-version
Bram Moolenaar79cf7c02018-04-03 14:21:16 +0200170Show version string.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000171.SH CAVEATS
172.PP
173.I xxd \-r
Matthias Braun02551c92023-08-13 19:20:35 +0200174has some built-in magic while evaluating line number information.
175If the output file is seekable, then the line numbers at the start of each
176hex dump line may be out of order, lines may be missing, or overlapping. In
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177these cases xxd will lseek(2) to the next position. If the output file is not
178seekable, only gaps are allowed, which will be filled by null-bytes.
179.PP
180.I xxd \-r
181never generates parse errors. Garbage is silently skipped.
182.PP
Matthias Braun02551c92023-08-13 19:20:35 +0200183When editing hex dumps, please note that
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184.I xxd \-r
185skips everything on the input line after reading enough columns of hexadecimal
Matthias Braun02551c92023-08-13 19:20:35 +0200186data (see option \-c). This also means that changes to the printable ASCII (or
187EBCDIC) columns are always ignored. Reverting a plain (or PostScript) style
188hex dump with xxd \-r \-p does not depend on the correct number of columns. Here, anything that looks like a pair of hex digits is interpreted.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189.PP
190Note the difference between
191.br
192\fI% xxd \-i file\fR
193.br
194and
195.br
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000196\fI% xxd \-i < file\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197.PP
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000198.I xxd \-s +seek
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199may be different from
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000200.IR "xxd \-s seek" ,
201as lseek(2) is used to "rewind" input. A '+'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202makes a difference if the input source is stdin, and if stdin's file position
203is not at the start of the file by the time xxd is started and given its input.
Matthias Braun02551c92023-08-13 19:20:35 +0200204The following examples may help to clarify (or further confuse!):
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205.PP
206Rewind stdin before reading; needed because the `cat' has already read to the
207end of stdin.
208.br
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000209\fI% sh \-c "cat > plain_copy; xxd \-s 0 > hex_copy" < file\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210.PP
Matthias Braun02551c92023-08-13 19:20:35 +0200211Hex dump from file position 0x480 (=1024+128) onwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212The `+' sign means "relative to the current position", thus the `128' adds to
213the 1k where dd left off.
214.br
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000215\fI% sh \-c "dd of=plain_snippet bs=1k count=1; xxd \-s +128 > hex_snippet" < file\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000216.PP
Matthias Braun02551c92023-08-13 19:20:35 +0200217Hex dump from file position 0x100 (=1024\-768) onwards.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218.br
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000219\fI% sh \-c "dd of=plain_snippet bs=1k count=1; xxd \-s +\-768 > hex_snippet" < file\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220.PP
221However, this is a rare situation and the use of `+' is rarely needed.
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000222The author prefers to monitor the effect of xxd with strace(1) or truss(1), whenever \-s is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223.SH EXAMPLES
224.PP
225.br
226Print everything but the first three lines (hex 0x30 bytes) of
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000227.BR file .
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228.br
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000229\fI% xxd \-s 0x30 file\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230.PP
231.br
232Print 3 lines (hex 0x30 bytes) from the end of
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000233.BR file .
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234.br
Bram Moolenaarc81e5e72007-05-05 18:24:42 +0000235\fI% xxd \-s \-0x30 file\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236.PP
237.br
Matthias Braun02551c92023-08-13 19:20:35 +0200238Print 120 bytes as a continuous hex dump with 20 octets per line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239.br
240\fI% xxd \-l 120 \-ps \-c 20 xxd.1\fR
241.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002422e54482058584420312022417567757374203139
Bram Moolenaar071d4272004-06-13 20:20:40 +0000243.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000024439362220224d616e75616c207061676520666f72
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000024620787864220a2e5c220a2e5c222032317374204d
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000248617920313939360a2e5c22204d616e2070616765
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +000025020617574686f723a0a2e5c2220202020546f6e79
Bram Moolenaar071d4272004-06-13 20:20:40 +0000251.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000252204e7567656e74203c746f6e79407363746e7567
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253.br
254
255.br
Matthias Braun02551c92023-08-13 19:20:35 +0200256Hex dump the first 120 bytes of this man page with 12 octets per line.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257.br
258\fI% xxd \-l 120 \-c 12 xxd.1\fR
259.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002600000000: 2e54 4820 5858 4420 3120 2241 .TH XXD 1 "A
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000262000000c: 7567 7573 7420 3139 3936 2220 ugust 1996"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002640000018: 224d 616e 7561 6c20 7061 6765 "Manual page
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002660000024: 2066 6f72 2078 7864 220a 2e5c for xxd"..\\
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002680000030: 220a 2e5c 2220 3231 7374 204d "..\\" 21st M
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000270000003c: 6179 2031 3939 360a 2e5c 2220 ay 1996..\\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002720000048: 4d61 6e20 7061 6765 2061 7574 Man page aut
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002740000054: 686f 723a 0a2e 5c22 2020 2020 hor:..\\"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002760000060: 546f 6e79 204e 7567 656e 7420 Tony Nugent
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000278000006c: 3c74 6f6e 7940 7363 746e 7567 <tony@sctnug
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279.PP
280.br
281Display just the date from the file xxd.1
282.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000283\fI% xxd \-s 0x36 \-l 13 \-c 13 xxd.1\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00002850000036: 3231 7374 204d 6179 2031 3939 36 21st May 1996
Bram Moolenaar071d4272004-06-13 20:20:40 +0000286.PP
287.br
288Copy
289.B input_file
290to
291.B output_file
292and prepend 100 bytes of value 0x00.
293.br
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000294\fI% xxd input_file | xxd \-r \-s 100 > output_file\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295.br
296
297.br
298Patch the date in the file xxd.1
299.br
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000300\fI% echo "0000037: 3574 68" | xxd \-r \- xxd.1\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000302\fI% xxd \-s 0x36 \-l 13 \-c 13 xxd.1\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303.br
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00003040000036: 3235 7468 204d 6179 2031 3939 36 25th May 1996
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305.PP
306.br
307Create a 65537 byte file with all bytes 0x00,
308except for the last one which is 'A' (hex 0x41).
309.br
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000310\fI% echo "010000: 41" | xxd \-r > file\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311.PP
312.br
Matthias Braun02551c92023-08-13 19:20:35 +0200313Hex dump this file with autoskip.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000314.br
315\fI% xxd \-a \-c 12 file\fR
316.br
3170000000: 0000 0000 0000 0000 0000 0000 ............
318.br
319*
320.br
321000fffc: 0000 0000 40 ....A
322.PP
323Create a 1 byte file containing a single 'A' character.
Matthias Braun02551c92023-08-13 19:20:35 +0200324The number after '\-r \-s' adds to the line numbers found in the file;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000325in effect, the leading bytes are suppressed.
326.br
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000327\fI% echo "010000: 41" | xxd \-r \-s \-0x10000 > file\fR
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328.PP
329Use xxd as a filter within an editor such as
330.B vim(1)
Matthias Braun02551c92023-08-13 19:20:35 +0200331to hex dump a region marked between `a' and `z'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000332.br
333\fI:'a,'z!xxd\fR
334.PP
335Use xxd as a filter within an editor such as
336.B vim(1)
Matthias Braun02551c92023-08-13 19:20:35 +0200337to recover a binary hex dump marked between `a' and `z'.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000338.br
339\fI:'a,'z!xxd \-r\fR
340.PP
341Use xxd as a filter within an editor such as
342.B vim(1)
Matthias Braun02551c92023-08-13 19:20:35 +0200343to recover one line of a hex dump. Move the cursor over the line and type:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000344.br
345\fI!!xxd \-r\fR
346.PP
347Read single characters from a serial line
348.br
349\fI% xxd \-c1 < /dev/term/b &\fR
350.br
351\fI% stty < /dev/term/b \-echo \-opost \-isig \-icanon min 1\fR
352.br
353\fI% echo \-n foo > /dev/term/b\fR
354.PP
355.SH "RETURN VALUES"
356The following error values are returned:
357.TP
3580
359no errors encountered.
360.TP
361\-1
Matthias Braun02551c92023-08-13 19:20:35 +0200362operation not supported
363\%(\c
364.I \%xxd \-r \-i
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365still impossible).
366.TP
3671
368error while parsing options.
369.TP
3702
371problems with input file.
372.TP
3733
374problems with output file.
375.TP
3764,5
377desired seek position is unreachable.
378.SH "SEE ALSO"
379uuencode(1), uudecode(1), patch(1)
380.br
381.SH WARNINGS
Matthias Braun02551c92023-08-13 19:20:35 +0200382The tool's weirdness matches its creator's brain.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000383Use entirely at your own risk. Copy files. Trace it. Become a wizard.
384.br
385.SH VERSION
386This manual page documents xxd version 1.7
387.SH AUTHOR
388.br
389(c) 1990-1997 by Juergen Weigert
390.br
Bram Moolenaar3991dab2006-03-27 17:01:56 +0000391<jnweiger@informatik.uni\-erlangen.de>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392.LP
393Distribute freely and credit me,
394.br
395make money and share with me,
396.br
397lose money and don't ask me.
398.PP
399Manual page started by Tony Nugent
400.br
401<tony@sctnugen.ppp.gu.edu.au> <T.Nugent@sct.gu.edu.au>
402.br
403Small changes by Bram Moolenaar.
404Edited by Juergen Weigert.
405.PP