Fix up mix of man(7)/mdoc(7).
[netbsd-mini2440.git] / usr.bin / sdiff / sdiff.1
bloba7f954410ce0edf6821964c4c2ac64386365c0b2
1 .\" $NetBSD$
2 .\"
3 .\" Written by Raymond Lai <ray@cyth.net>.
4 .\" Public domain.
5 .\"
6 .Dd October 29, 2005
7 .Dt SDIFF 1
8 .Os
9 .Sh NAME
10 .Nm sdiff
11 .Nd side-by-side diff
12 .Sh SYNOPSIS
13 .Nm
14 .Op Fl abdilstW
15 .Op Fl I Ar regexp
16 .Op Fl o Ar outfile
17 .Op Fl w Ar width
18 .Ar file1
19 .Ar file2
20 .Sh DESCRIPTION
21 Shows a side-by-side comparison of two files.
22 .Pp
23 The options are:
24 .Bl -tag -width Ds
25 .It Fl l
26 Only print the left column for identical lines.
27 .It Fl o Ar outfile
28 Interactively merge
29 .Ar file1
30 and
31 .Ar file2
32 into
33 .Ar outfile .
34 In this mode, the user is prompted for each set of differences.
35 See
36 .Ev EDITOR
37 and
38 .Ev VISUAL ,
39 below,
40 for details of which editor, if any, is invoked.
41 .Pp
42 The commands are as follows:
43 .Bl -tag -width Ds
44 .It Cm l
45 Choose left set of diffs.
46 .It Cm r
47 Choose right set of diffs.
48 .It Cm s
49 Silent mode \(en identical lines are not printed.
50 .It Cm v
51 Verbose mode \(en identical lines are printed.
52 .It Cm e
53 Start editing an empty file, which will be merged into
54 .Ar outfile
55 upon exiting the editor.
56 .It Cm e Cm l
57 Start editing file with left set of diffs.
58 .It Cm e Cm r
59 Start editing file with right set of diffs.
60 .It Cm e Cm b
61 Start editing file with both sets of diffs.
62 .It Cm q
63 Quit
64 .Nm .
65 .El
66 .It Fl s
67 Skip identical lines.
68 .It Fl w Ar width
69 Print a maximum of
70 .Ar width
71 characters on each line.
72 The default is 130 characters.
73 .El
74 .Pp
75 Options passed to
76 .Xr diff 1
77 are:
78 .Bl -tag -width Ds
79 .It Fl a
80 Treat
81 .Ar file1
82 and
83 .Ar file2
84 as text files.
85 .It Fl b
86 Ignore trailing blank spaces.
87 .It Fl d
88 Minimize diff size.
89 .It Fl I Ar regexp
90 Ignore line changes matching
91 .Ar regexp .
92 All lines in the change must match
93 .Ar regexp
94 for the change to be ignored.
95 .It Fl i
96 Do a case-insensitive comparison.
97 .It Fl t
98 Expand tabs to spaces.
99 .It Fl W
100 Ignore all spaces
101 (the
102 .Fl w
103 flag is passed to
104 .Xr diff 1 ) .
106 .Sh ENVIRONMENT
107 .Bl -tag -width Ds
108 .It Ev EDITOR , VISUAL
109 Specifies an editor to use with the
110 .Fl o
111 option.
112 If both
113 .Ev EDITOR
115 .Ev VISUAL
116 are set,
117 .Ev VISUAL
118 takes precedence.
119 If neither
120 .Ev EDITOR
122 .Ev VISUAL
123 are set,
124 the default is
125 .Xr vi 1 .
126 .It Ev TMPDIR
127 Specifies a directory for temporary files to be created.
128 The default is
129 .Pa /tmp .
131 .Sh SEE ALSO
132 .Xr diff 1 ,
133 .Xr diff3 1 ,
134 .Xr vi 1 ,
135 .Xr re_format 7
136 .Sh AUTHORS
138 was written from scratch for the public domain by
139 .An Ray Lai Aq ray@cyth.net .
140 .Sh CAVEATS
141 Although undocumented,
143 supports all options supported by GNU sdiff.
144 Some options require GNU diff.
146 Tabs are treated as anywhere from one to eight characters wide,
147 depending on the current column.
148 Terminals that treat tabs as eight characters wide will look best.
149 .Sh BUGS
151 may not work with binary data.