5 # The contents of this file are subject to the terms of the
6 # Common Development and Distribution License, Version 1.0 only
7 # (the "License"). You may not use this file except in compliance
10 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
11 # or http://www.opensolaris.org/os/licensing.
12 # See the License for the specific language governing permissions
13 # and limitations under the License.
15 # When distributing Covered Code, include this CDDL HEADER in each
16 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
17 # If applicable, add the following below this CDDL HEADER, with the
18 # fields enclosed by brackets "[]" replaced with your own identifying
19 # information: Portions Copyright [yyyy] [name of copyright owner]
23 # Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T
27 # Copyright (c) 1999, 2001 by Sun Microsystems, Inc.
28 # All rights reserved.
30 usage
="usage: diff3 file1 file2 file3"
32 # mktmpdir - Create a private (mode 0700) temporary directory inside of /tmp
33 # for this process's temporary files. We set up a trap to remove the
34 # directory on exit (trap 0), and also on SIGHUP, SIGINT, SIGQUIT, SIGPIPE,
39 trap '/usr/bin/rm -rf $tmpdir' 0 1 2 3 13 15
40 /usr
/bin
/mkdir
-m 700 $tmpdir ||
exit 1
54 if [ \
( -f $1 -o -c $1 \
) -a \
( -f $2 -o -c $2 \
) -a \
( -f $3 -o -c $3 \
) ]; then
63 /usr
/bin
/cat $f1 > $tmpdir/d3c$$
68 /usr
/bin
/cat $f2 > $tmpdir/d3d$$
73 /usr
/bin
/cat $f3 > $tmpdir/d3e$$
77 /usr
/bin
/diff $f1 $f3 > $tmpdir/d3a$$
2> $tmpdir/d3a$$.err
81 /usr
/bin
/grep -q "^[<>]" $tmpdir/d3a$$
85 /usr
/bin
/cat $tmpdir/d3a$$
91 echo "diff3 failed" 1>&2
98 /usr
/bin
/cat $tmpdir/d3a$$.err
102 /usr
/bin
/diff $f2 $f3 > $tmpdir/d3b$$
2> $tmpdir/d3b$$.err
106 /usr
/bin
/grep -q "^[<>]" $tmpdir/d3b$$
110 /usr
/bin
/cat $tmpdir/d3b$$
116 echo "diff3 failed" 1>&2
123 /usr
/bin
/cat $tmpdir/d3b$$.err
127 /usr
/lib
/diff3prog
$e $tmpdir/d3
[ab
]$$
$f1 $f2 $f3