Unix and Linux Discussions Tagged with diff |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
10 |
112,282 |
Shell Programming and Scripting |
|
|
|
7 |
10,413 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
9,871 |
Shell Programming and Scripting |
|
|
|
2 |
4,125 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
3,455 |
Shell Programming and Scripting |
|
|
|
8 |
4,644 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,684 |
Shell Programming and Scripting |
|
|
|
11 |
16,178 |
Debian |
|
|
|
10 |
3,809 |
Shell Programming and Scripting |
|
|
|
3 |
1,850 |
Shell Programming and Scripting |
|
|
|
5 |
28,742 |
Shell Programming and Scripting |
|
|
|
6 |
2,883 |
Shell Programming and Scripting |
|
|
|
1 |
11,193 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
2,463 |
Shell Programming and Scripting |
|
|
|
5 |
3,262 |
Shell Programming and Scripting |
|
|
|
5 |
6,878 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
2,266 |
Shell Programming and Scripting |
|
|
|
7 |
3,328 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
6,121 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,951 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
12,426 |
Linux |
|
|
|
2 |
21,504 |
Shell Programming and Scripting |
|
|
|
3 |
1,827 |
Shell Programming and Scripting |
|
|
|
11 |
3,055 |
Shell Programming and Scripting |
|
|
|
4 |
2,098 |
Shell Programming and Scripting |
|
|
|
13 |
5,947 |
Shell Programming and Scripting |
|
|
|
1 |
2,217 |
Shell Programming and Scripting |
|
|
|
5 |
7,731 |
Shell Programming and Scripting |
|
|
|
1 |
6,470 |
Shell Programming and Scripting |
|
|
|
16 |
5,751 |
Shell Programming and Scripting |
|
|
|
1 |
6,121 |
Red Hat |
|
|
|
5 |
3,615 |
Web Development |
|
|
|
5 |
26,612 |
Shell Programming and Scripting |
|
|
|
1 |
2,311 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
13,021 |
Shell Programming and Scripting |
|
|
|
2 |
3,570 |
Shell Programming and Scripting |
|
|
|
7 |
8,133 |
Shell Programming and Scripting |
|
|
|
3 |
4,939 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,414 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
6,361 |
Shell Programming and Scripting |
CUT-DIFF(1) Cutter's manual CUT-DIFF(1)
NAME
cut-diff - show difference between 2 files with color
SYNOPSIS
cut-diff [option ...] file1 file2
DESCRIPTION
cut-diff is a diff command that uses diff feature in Cutter. It shows difference with color.
It's recommended that you use a normal diff(1) when you want to use with patch(1) or you don't need color.
OPTIONS
--version
cut-diff shows its own version and exits.
-c [yes|true|no|false|auto], --color=[yes|true|no|false|auto]
If 'yes' or 'true' is specified, cut-diff uses colorized output by escape sequence. If 'no' or 'false' is specified, cut-diff never
use colorized output. If 'auto' or the option is omitted, cut-diff uses colorized output if available.
The default is auto.
-u, --unified
cut-diff uses unified diff format.
--context-lines=LINES
Shows diff context around LINES.
All lines are shown by default. When unified diff format is used, 3 lines are shown by default.
--label=LABEL, -L=LABEL
Uses LABEL as a header label. The first--label option value is used as file1's label and the second --label option value is used
asfile2's label.
Labels are the same as file names by default.
EXIT STATUS
The exit status is 0 for success, non-0 otherwise.
TODO: 0 for non-difference, 1 for difference and non-0 for errors.
EXAMPLE
In the following example, cut-diff shows difference between file1 and file2:
% cut-diff file1 file2
In the following example, cut-diff shows difference between file1 and file2 with unified diff format:
% cut-diff -u file1 file2
SEE ALSO
diff(1)
Cutter February 2011 CUT-DIFF(1)