Comparing and Merging Files Overview 1 What Comparison Means 2 ‘diff’ Output Formats 3 Incomplete Lines 4 Comparing Directories 5 Making ‘diff’ Output Prettier 6 ‘diff’ Performance Tradeoffs 7 Comparing Three Files 8 Merging From a Common Ancestor 9 Interactive Merging with ‘sdiff’ 10 Merging with ‘patch’ 11 Tips for Making and Using Patches 12 Invoking ‘cmp’ 13 Invoking ‘diff’ 14 Invoking ‘diff3’ 15 Invoking ‘patch’ 16 Invoking ‘sdiff’ 17 Standards conformance 18 Future Projects Appendix A Copying This Manual Appendix B Translations of This Manual Appendix C Index Comparing and Merging Files Overview 1 What Comparison Means 1.1 Hunks 1.2 Suppressing Differences in Blank and Tab Spacing 1.3 Suppressing Differences Whose Lines Are All Blank 1.4 Suppressing Differences Whose Lines All Match a Regular Expression 1.5 Suppressing Case Differences 1.6 Summarizing Which Files Differ 1.7 Binary Files and Forcing Text Comparisons 2 ‘diff’ Output Formats 2.1 Two Sample Input Files 2.2 Showing Differences in Their Context 2.2.1 Context Format 2.2.1.1 An Example of Context Format 2.2.1.2 An Example of Context Format with Less Context 2.2.1.3 Detailed Description of Context Format 2.2.2 Unified Format 2.2.2.1 An Example of Unified Format 2.2.2.2 Detailed Description of Unified Format 2.2.3 Showing Which Sections Differences Are in 2.2.3.1 Showing Lines That Match Regular Expressions 2.2.3.2 Showing C Function Headings 2.2.4 Showing Alternate File Names 2.3 Showing Differences Side by Side 2.3.1 Controlling Side by Side Format 2.3.2 An Example of Side by Side Format 2.4 Showing Differences Without Context 2.4.1 An Example of Normal Format 2.4.2 Detailed Description of Normal Format 2.5 Making Edit Scripts 2.5.1 ‘ed’ Scripts 2.5.1.1 Example ‘ed’ Script 2.5.1.2 Detailed Description of ‘ed’ Format 2.5.2 Forward ‘ed’ Scripts 2.5.3 RCS Scripts 2.6 Merging Files with If-then-else 2.6.1 Line Group Formats 2.6.2 Line Formats 2.6.3 An Example of If-then-else Format 2.6.4 Detailed Description of If-then-else Format 3 Incomplete Lines 4 Comparing Directories 5 Making ‘diff’ Output Prettier 5.1 Preserving Tab Stop Alignment 5.2 Omitting trailing blanks 5.3 Paginating ‘diff’ Output 6 ‘diff’ Performance Tradeoffs 7 Comparing Three Files 7.1 A Third Sample Input File 7.2 An Example of ‘diff3’ Normal Format 7.3 Detailed Description of ‘diff3’ Normal Format 7.4 ‘diff3’ Hunks 8 Merging From a Common Ancestor 8.1 Selecting Which Changes to Incorporate 8.2 Marking Conflicts 8.3 Generating the Merged Output Directly 8.4 How ‘diff3’ Merges Incomplete Lines 8.5 Saving the Changed File 9 Interactive Merging with ‘sdiff’ 9.1 Specifying ‘diff’ Options to ‘sdiff’ 9.2 Merge Commands 10 Merging with ‘patch’ 10.1 Selecting the ‘patch’ Input Format 10.2 Revision Control 10.3 Applying Imperfect Patches 10.3.1 Applying Patches with Changed White Space 10.3.2 Applying Reversed Patches 10.3.3 Helping ‘patch’ Find Inexact Matches 10.3.4 Predicting what ‘patch’ will do 10.4 Creating and Removing Files 10.5 Updating Timestamps on Patched Files 10.6 Multiple Patches in a File 10.7 Applying Patches in Other Directories 10.8 Backup Files 10.9 Backup File Names 10.10 Reject File Names 10.11 Messages and Questions from ‘patch’ 10.11.1 Controlling the Verbosity of ‘patch’ 10.11.2 Inhibiting Keyboard Input 10.11.3 ‘patch’ Quoting Style 10.12 ‘patch’ and the POSIX Standard 10.13 GNU ‘patch’ and Traditional ‘patch’ 11 Tips for Making and Using Patches 11.1 Tips for Patch Producers 11.2 Tips for Patch Consumers 11.3 Avoiding Common Mistakes 11.4 Generating Smaller Patches 12 Invoking ‘cmp’ 12.1 Options to ‘cmp’ 13 Invoking ‘diff’ 13.1 Options to ‘diff’ 14 Invoking ‘diff3’ 14.1 Options to ‘diff3’ 15 Invoking ‘patch’ 15.1 Options to ‘patch’ 16 Invoking ‘sdiff’ 16.1 Options to ‘sdiff’ 17 Standards conformance 18 Future Projects 18.1 Suggested Projects for Improving GNU ‘diff’ and ‘patch’ 18.1.1 Handling Multibyte and Varying-Width Characters 18.1.2 Handling Changes to the Directory Structure 18.1.3 Files that are Neither Directories Nor Regular Files 18.1.4 File Names that Contain Unusual Characters 18.1.5 Outputting Diffs in Timestamp Order 18.1.6 Ignoring Certain Changes 18.1.7 Improving Performance 18.2 Reporting Bugs Appendix A Copying This Manual Appendix B Translations of This Manual Appendix C Index Comparing and Merging Files *************************** This manual is for GNU Diffutils (version 3.10, 2 January 2023), and documents the GNU ‘diff’, ‘diff3’, ‘sdiff’, and ‘cmp’ commands for showing the differences between files and the GNU ‘patch’ command for using their output to update files. Copyright © 1992-1994, 1998, 2001-2002, 2004, 2006, 2009-2023 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License." Overview ******** Computer users often find occasion to ask how two files differ. Perhaps one file is a newer version of the other file. Or maybe the two files started out as identical copies but were changed by different people. You can use the ‘diff’ command to show differences between two files, or each corresponding file in two directories. ‘diff’ outputs differences between files line by line in any of several formats, selectable by command line options. This set of differences is often called a “diff” or “patch”. For files that are identical, ‘diff’ normally produces no output; for binary (non-text) files, ‘diff’ normally reports only that they are different. You can use the ‘cmp’ command to show the byte and line numbers where two files differ. ‘cmp’ can also show all the bytes that differ between the two files, side by side. A way to compare two files character by character is the Emacs command ‘M-x compare-windows’. *Note Other Window: (emacs)Other Window, for more information on that command. You can use the ‘diff3’ command to show differences among three files. When two people have made independent changes to a common original, ‘diff3’ can report the differences between the original and the two changed versions, and can produce a merged file that contains both persons' changes together with warnings about conflicts. You can use the ‘sdiff’ command to merge two files interactively. You can use the set of differences produced by ‘diff’ to distribute updates to text files (such as program source code) to other people. This method is especially useful when the differences are small compared to the complete files. Given ‘diff’ output, you can use the ‘patch’ program to update, or “patch”, a copy of the file. If you think of ‘diff’ as subtracting one file from another to produce their difference, you can think of ‘patch’ as adding the difference to one file to reproduce the other. This manual first concentrates on making diffs, and later shows how to use diffs to update files. GNU ‘diff’ was written by Paul Eggert, Mike Haertel, David Hayes, Richard Stallman, and Len Tower. Wayne Davison designed and implemented the unified output format. The basic algorithm is described by Eugene W. Myers in "An O(ND) Difference Algorithm and its Variations", ‘Algorithmica’ Vol. 1, 1986, pp. 251-266, ; and in "A File Comparison Program", Webb Miller and Eugene W. Myers, ‘Software--Practice and Experience’ Vol. 15, 1985, pp. 1025-1040, . The algorithm was independently discovered as described by Esko Ukkonen in "Algorithms for Approximate String Matching", ‘Information and Control’ Vol. 64, 1985, pp. 100-118, . Unless the ‘--minimal’ option is used, ‘diff’ uses a heuristic by Paul Eggert that limits the cost to O(N^1.5 log N) at the price of producing suboptimal output for large inputs with many differences. Related algorithms are surveyed by Alfred V. Aho in section 6.3 of "Algorithms for Finding Patterns in Strings", ‘Handbook of Theoretical Computer Science’ (Jan Van Leeuwen, ed.), Vol. A, ‘Algorithms and Complexity’, Elsevier/MIT Press, 1990, pp. 255-300. GNU ‘diff3’ was written by Randy Smith. GNU ‘sdiff’ was written by Thomas Lord. GNU ‘cmp’ was written by Torbjörn Granlund and David MacKenzie. GNU ‘patch’ was written mainly by Larry Wall and Paul Eggert; several GNU enhancements were contributed by Wayne Davison and David MacKenzie. Parts of this manual are adapted from a manual page written by Larry Wall, with his permission. 1 What Comparison Means *********************** There are several ways to think about the differences between two files. One way to think of the differences is as a series of lines that were deleted from, inserted in, or changed in one file to produce the other file. ‘diff’ compares two files line by line, finds groups of lines that differ, and reports each group of differing lines. It can report the differing lines in several formats, which have different purposes. GNU ‘diff’ can show whether files are different without detailing the differences. It also provides ways to suppress certain kinds of differences that are not important to you. Most commonly, such differences are changes in the amount of white space between words or lines. ‘diff’ also provides ways to suppress differences in alphabetic case or in lines that match a regular expression that you provide. These options can accumulate; for example, you can ignore changes in both white space and alphabetic case. Another way to think of the differences between two files is as a sequence of pairs of bytes that can be either identical or different. ‘cmp’ reports the differences between two files byte by byte, instead of line by line. As a result, it is often more useful than ‘diff’ for comparing binary files. For text files, ‘cmp’ is useful mainly when you want to know only whether two files are identical, or whether one file is a prefix of the other. To illustrate the effect that considering changes byte by byte can have compared with considering them line by line, think of what happens if a single newline character is added to the beginning of a file. If that file is then compared with an otherwise identical file that lacks the newline at the beginning, ‘diff’ will report that a blank line has been added to the file, while ‘cmp’ will report that almost every byte of the two files differs. ‘diff3’ normally compares three input files line by line, finds groups of lines that differ, and reports each group of differing lines. Its output is designed to make it easy to inspect two different sets of changes to the same file. These commands compare input files without necessarily reading them. For example, if ‘diff’ is asked simply to report whether two files differ, and it discovers that the files have different sizes, it need not read them to do its job. 1.1 Hunks ========= When comparing two files, ‘diff’ finds sequences of lines common to both files, interspersed with groups of differing lines called “hunks”. Comparing two identical files yields one sequence of common lines and no hunks, because no lines differ. Comparing two entirely different files yields no common lines and one large hunk that contains all lines of both files. In general, there are many ways to match up lines between two given files. ‘diff’ tries to minimize the total hunk size by finding large sequences of common lines interspersed with small hunks of differing lines. For example, suppose the file ‘F’ contains the three lines ‘a’, ‘b’, ‘c’, and the file ‘G’ contains the same three lines in reverse order ‘c’, ‘b’, ‘a’. If ‘diff’ finds the line ‘c’ as common, then the command ‘diff F G’ produces this output: 1,2d0 < a < b 3a2,3 > b > a But if ‘diff’ notices the common line ‘b’ instead, it produces this output: 1c1 < a --- > c 3c3 < c --- > a It is also possible to find ‘a’ as the common line. ‘diff’ does not always find an optimal matching between the files; it takes shortcuts to run faster. But its output is usually close to the shortest possible. You can adjust this tradeoff with the ‘--minimal’ (‘-d’) option (*note diff Performance::). 1.2 Suppressing Differences in Blank and Tab Spacing ==================================================== The ‘--ignore-tab-expansion’ (‘-E’) option ignores the distinction between tabs and spaces on input. A tab is considered to be equivalent to the number of spaces to the next tab stop (*note Tabs::). The ‘--ignore-trailing-space’ (‘-Z’) option ignores white space at line end. The ‘--ignore-space-change’ (‘-b’) option is stronger than ‘-E’ and ‘-Z’ combined. It ignores white space at line end, and considers all other sequences of one or more white space characters within a line to be equivalent. With this option, ‘diff’ considers the following two lines to be equivalent, where ‘$’ denotes the line end: Here lyeth muche rychnesse in lytell space. -- John Heywood$ Here lyeth muche rychnesse in lytell space. -- John Heywood $ The ‘--ignore-all-space’ (‘-w’) option is stronger still. It ignores differences even if one line has white space where the other line has none. “White space” characters include tab, vertical tab, form feed, carriage return, and space; some locales may define additional characters to be white space. With this option, ‘diff’ considers the following two lines to be equivalent, where ‘$’ denotes the line end and ‘^M’ denotes a carriage return: Here lyeth muche rychnesse in lytell space.-- John Heywood$ He relyeth much erychnes seinly tells pace. --John Heywood ^M$ For many other programs newline is also a white space character, but ‘diff’ is a line-oriented program and a newline character always ends a line. Hence the ‘-w’ or ‘--ignore-all-space’ option does not ignore newline-related changes; it ignores only other white space changes. 1.3 Suppressing Differences Whose Lines Are All Blank ===================================================== The ‘--ignore-blank-lines’ (‘-B’) option ignores changes that consist entirely of blank lines. With this option, for example, a file containing 1. A point is that which has no part. 2. A line is breadthless length. -- Euclid, The Elements, I is considered identical to a file containing 1. A point is that which has no part. 2. A line is breadthless length. -- Euclid, The Elements, I Normally this option affects only lines that are completely empty, but if you also specify an option that ignores trailing spaces, lines are also affected if they look empty but contain white space. In other words, ‘-B’ is equivalent to ‘-I '^$'’ by default, but it is equivalent to ‘-I '^[[:space:]]*$'’ if ‘-b’, ‘-w’ or ‘-Z’ is also specified. 1.4 Suppressing Differences Whose Lines All Match a Regular Expression ====================================================================== To ignore insertions and deletions of lines that match a ‘grep’-style regular expression, use the ‘--ignore-matching-lines=REGEXP’ (‘-I REGEXP’) option. You should escape regular expressions that contain shell metacharacters to prevent the shell from expanding them. For example, ‘diff -I '^[[:digit:]]'’ ignores all changes to lines beginning with a digit. However, ‘-I’ only ignores the insertion or deletion of lines that contain the regular expression if every changed line in the hunk--every insertion and every deletion--matches the regular expression. In other words, for each nonignorable change, ‘diff’ prints the complete set of changes in its vicinity, including the ignorable ones. You can specify more than one regular expression for lines to ignore by using more than one ‘-I’ option. ‘diff’ tries to match each line against each regular expression. 1.5 Suppressing Case Differences ================================ GNU ‘diff’ can treat lower case letters as equivalent to their upper case counterparts, so that, for example, it considers ‘Funky Stuff’, ‘funky STUFF’, and ‘fUNKy stuFf’ to all be the same. To request this, use the ‘-i’ or ‘--ignore-case’ option. 1.6 Summarizing Which Files Differ ================================== When you only want to find out whether files are different, and you don't care what the differences are, you can use the summary output format. In this format, instead of showing the differences between the files, ‘diff’ simply reports whether files differ. The ‘--brief’ (‘-q’) option selects this output format. This format is especially useful when comparing the contents of two directories. It is also much faster than doing the normal line by line comparisons, because ‘diff’ can stop analyzing the files as soon as it knows that there are any differences. You can also get a brief indication of whether two files differ by using ‘cmp’. For files that are identical, ‘cmp’ produces no output. When the files differ, by default, ‘cmp’ outputs the byte and line number where the first difference occurs, or reports that one file is a prefix of the other. You can use the ‘-s’, ‘--quiet’, or ‘--silent’ option to suppress that information, so that ‘cmp’ produces no output and reports whether the files differ using only its exit status (*note Invoking cmp::). Unlike ‘diff’, ‘cmp’ cannot compare directories; it can only compare two files. 1.7 Binary Files and Forcing Text Comparisons ============================================= If ‘diff’ thinks that either of the two files it is comparing is binary (a non-text file), it normally treats that pair of files much as if the summary output format had been selected (*note Brief::), and reports only that the binary files are different. This is because line by line comparisons are usually not meaningful for binary files. This does not count as trouble, even though the resulting output does not capture all the differences. ‘diff’ determines whether a file is text or binary by checking the first few bytes in the file; the exact number of bytes is system dependent, but it is typically several thousand. If every byte in that part of the file is non-null, ‘diff’ considers the file to be text; otherwise it considers the file to be binary. Sometimes you might want to force ‘diff’ to consider files to be text. For example, you might be comparing text files that contain null characters; ‘diff’ would erroneously decide that those are non-text files. Or you might be comparing documents that are in a format used by a word processing system that uses null characters to indicate special formatting. You can force ‘diff’ to consider all files to be text files, and compare them line by line, by using the ‘--text’ (‘-a’) option. If the files you compare using this option do not in fact contain text, they will probably contain few newline characters, and the ‘diff’ output will consist of hunks showing differences between long lines of whatever characters the files contain. You can also force ‘diff’ to report only whether files differ (but not how). Use the ‘--brief’ (‘-q’) option for this. In operating systems that distinguish between text and binary files, ‘diff’ normally reads and writes all data as text. Use the ‘--binary’ option to force ‘diff’ to read and write binary data instead. This option has no effect on a POSIX-compliant system like GNU or traditional Unix. However, many personal computer operating systems represent the end of a line with a carriage return followed by a newline. On such systems, ‘diff’ normally ignores these carriage returns on input and generates them at the end of each output line, but with the ‘--binary’ option ‘diff’ treats each carriage return as just another input character, and does not generate a carriage return at the end of each output line. This can be useful when dealing with non-text files that are meant to be interchanged with POSIX-compliant systems. The ‘--strip-trailing-cr’ causes ‘diff’ to treat input lines that end in carriage return followed by newline as if they end in plain newline. This can be useful when comparing text that is imperfectly imported from many personal computer operating systems. This option affects how lines are read, which in turn affects how they are compared and output. If you want to compare two files byte by byte, you can use the ‘cmp’ program with the ‘--verbose’ (‘-l’) option to show the values of each differing byte in the two files. With GNU ‘cmp’, you can also use the ‘-b’ or ‘--print-bytes’ option to show the ASCII representation of those bytes. *Note Invoking cmp::, for more information. If ‘diff3’ thinks that any of the files it is comparing is binary (a non-text file), it normally reports an error, because such comparisons are usually not useful. ‘diff3’ uses the same test as ‘diff’ to decide whether a file is binary. As with ‘diff’, if the input files contain a few non-text bytes but otherwise are like text files, you can force ‘diff3’ to consider all files to be text files and compare them line by line by using the ‘-a’ or ‘--text’ option. 2 ‘diff’ Output Formats *********************** ‘diff’ has several mutually exclusive options for output format. The following sections describe each format, illustrating how ‘diff’ reports the differences between two sample input files. 2.1 Two Sample Input Files ========================== Here are two sample files that we will use in numerous examples to illustrate the output of ‘diff’ and how various options can change it. This is the file ‘lao’: The Way that can be told of is not the eternal Way; The name that can be named is not the eternal name. The Nameless is the origin of Heaven and Earth; The Named is the mother of all things. Therefore let there always be non-being, so we may see their subtlety, And let there always be being, so we may see their outcome. The two are the same, But after they are produced, they have different names. This is the file ‘tzu’: The Nameless is the origin of Heaven and Earth; The named is the mother of all things. Therefore let there always be non-being, so we may see their subtlety, And let there always be being, so we may see their outcome. The two are the same, But after they are produced, they have different names. They both may be called deep and profound. Deeper and more profound, The door of all subtleties! In this example, the first hunk contains just the first two lines of ‘lao’, the second hunk contains the fourth line of ‘lao’ opposing the second and third lines of ‘tzu’, and the last hunk contains just the last three lines of ‘tzu’. 2.2 Showing Differences in Their Context ======================================== Usually, when you are looking at the differences between files, you will also want to see the parts of the files near the lines that differ, to help you understand exactly what has changed. These nearby parts of the files are called the “context”. GNU ‘diff’ provides two output formats that show context around the differing lines: “context format” and “unified format”. It can optionally show in which function or section of the file the differing lines are found. If you are distributing new versions of files to other people in the form of ‘diff’ output, you should use one of the output formats that show context so that they can apply the diffs even if they have made small changes of their own to the files. ‘patch’ can apply the diffs in this case by searching in the files for the lines of context around the differing lines; if those lines are actually a few lines away from where the diff says they are, ‘patch’ can adjust the line numbers accordingly and still apply the diff correctly. *Note Imperfect::, for more information on using ‘patch’ to apply imperfect diffs. 2.2.1 Context Format -------------------- The context output format shows several lines of context around the lines that differ. It is the standard format for distributing updates to source code. To select this output format, use the ‘--context[=LINES]’ (‘-C LINES’) or ‘-c’ option. The argument LINES that some of these options take is the number of lines of context to show. If you do not specify LINES, it defaults to three. For proper operation, ‘patch’ typically needs at least two lines of context. 2.2.1.1 An Example of Context Format .................................... Here is the output of ‘diff -c lao tzu’ (*note Sample diff Input::, for the complete contents of the two files). Notice that up to three lines that are not different are shown around each line that is different; they are the context lines. Also notice that the first two hunks have run together, because their contents overlap. *** lao 2002-02-21 23:30:39.942229878 -0800 --- tzu 2002-02-21 23:30:50.442260588 -0800 *************** *** 1,7 **** - The Way that can be told of is not the eternal Way; - The name that can be named is not the eternal name. The Nameless is the origin of Heaven and Earth; ! The Named is the mother of all things. Therefore let there always be non-being, so we may see their subtlety, And let there always be being, --- 1,6 ---- The Nameless is the origin of Heaven and Earth; ! The named is the mother of all things. ! Therefore let there always be non-being, so we may see their subtlety, And let there always be being, *************** *** 9,11 **** --- 8,13 ---- The two are the same, But after they are produced, they have different names. + They both may be called deep and profound. + Deeper and more profound, + The door of all subtleties! 2.2.1.2 An Example of Context Format with Less Context ...................................................... Here is the output of ‘diff -C 1 lao tzu’ (*note Sample diff Input::, for the complete contents of the two files). Notice that at most one context line is reported here. *** lao 2002-02-21 23:30:39.942229878 -0800 --- tzu 2002-02-21 23:30:50.442260588 -0800 *************** *** 1,5 **** - The Way that can be told of is not the eternal Way; - The name that can be named is not the eternal name. The Nameless is the origin of Heaven and Earth; ! The Named is the mother of all things. Therefore let there always be non-being, --- 1,4 ---- The Nameless is the origin of Heaven and Earth; ! The named is the mother of all things. ! Therefore let there always be non-being, *************** *** 11 **** --- 10,13 ---- they have different names. + They both may be called deep and profound. + Deeper and more profound, + The door of all subtleties! 2.2.1.3 Detailed Description of Context Format .............................................. The context output format starts with a two-line header, which looks like this: *** FROM-FILE FROM-FILE-MODIFICATION-TIME --- TO-FILE TO-FILE-MODIFICATION TIME The timestamp normally looks like ‘2002-02-21 23:30:39.942229878 -0800’ to indicate the date, time with fractional seconds, and time zone in Internet RFC 2822 format (ftp://ftp.isi.edu/in-notes/rfc2822.txt). (The fractional seconds are omitted on hosts that do not support fractional timestamps.) However, a traditional timestamp like ‘Thu Feb 21 23:30:39 2002’ is used if the ‘LC_TIME’ locale category is either ‘C’ or ‘POSIX’. You can change the header's content with the ‘--label=LABEL’ option; see *note Alternate Names::. Next come one or more hunks of differences; each hunk shows one area where the files differ. Context format hunks look like this: *************** *** FROM-FILE-LINE-NUMBERS **** FROM-FILE-LINE FROM-FILE-LINE... --- TO-FILE-LINE-NUMBERS ---- TO-FILE-LINE TO-FILE-LINE... If a hunk contains two or more lines, its line numbers look like ‘START,END’. Otherwise only its end line number appears. An empty hunk is considered to end at the line that precedes the hunk. The lines of context around the lines that differ start with two space characters. The lines that differ between the two files start with one of the following indicator characters, followed by a space character: ‘!’ A line that is part of a group of one or more lines that changed between the two files. There is a corresponding group of lines marked with ‘!’ in the part of this hunk for the other file. ‘+’ An "inserted" line in the second file that corresponds to nothing in the first file. ‘-’ A "deleted" line in the first file that corresponds to nothing in the second file. If all of the changes in a hunk are insertions, the lines of FROM-FILE are omitted. If all of the changes are deletions, the lines of TO-FILE are omitted. 2.2.2 Unified Format -------------------- The unified output format is a variation on the context format that is more compact because it omits redundant context lines. To select this output format, use the ‘--unified[=LINES]’ (‘-U LINES’), or ‘-u’ option. The argument LINES is the number of lines of context to show. When it is not given, it defaults to three. In the early 1990s, only GNU ‘diff’ could produce this format and only GNU ‘patch’ could automatically apply diffs in this format. For proper operation, ‘patch’ typically needs at least three lines of context. 2.2.2.1 An Example of Unified Format .................................... Here is the output of the command ‘diff -u lao tzu’ (*note Sample diff Input::, for the complete contents of the two files): --- lao 2002-02-21 23:30:39.942229878 -0800 +++ tzu 2002-02-21 23:30:50.442260588 -0800 @@ -1,7 +1,6 @@ -The Way that can be told of is not the eternal Way; -The name that can be named is not the eternal name. The Nameless is the origin of Heaven and Earth; -The Named is the mother of all things. +The named is the mother of all things. + Therefore let there always be non-being, so we may see their subtlety, And let there always be being, @@ -9,3 +8,6 @@ The two are the same, But after they are produced, they have different names. +They both may be called deep and profound. +Deeper and more profound, +The door of all subtleties! 2.2.2.2 Detailed Description of Unified Format .............................................. The unified output format starts with a two-line header, which looks like this: --- FROM-FILE FROM-FILE-MODIFICATION-TIME +++ TO-FILE TO-FILE-MODIFICATION-TIME The timestamp looks like ‘2002-02-21 23:30:39.942229878 -0800’ to indicate the date, time with fractional seconds, and time zone. The fractional seconds are omitted on hosts that do not support fractional timestamps. You can change the header's content with the ‘--label=LABEL’ option. *Note Alternate Names::. Next come one or more hunks of differences; each hunk shows one area where the files differ. Unified format hunks look like this: @@ FROM-FILE-LINE-NUMBERS TO-FILE-LINE-NUMBERS @@ LINE-FROM-EITHER-FILE LINE-FROM-EITHER-FILE... If a hunk contains just one line, only its start line number appears. Otherwise its line numbers look like ‘START,COUNT’. An empty hunk is considered to start at the line that follows the hunk. If a hunk and its context contain two or more lines, its line numbers look like ‘START,COUNT’. Otherwise only its end line number appears. An empty hunk is considered to end at the line that precedes the hunk. The lines common to both files begin with a space character. The lines that actually differ between the two files have one of the following indicator characters in the left print column: ‘+’ A line was added here to the first file. ‘-’ A line was removed here from the first file. 2.2.3 Showing Which Sections Differences Are in ----------------------------------------------- Sometimes you might want to know which part of the files each change falls in. If the files are source code, this could mean which function was changed. If the files are documents, it could mean which chapter or appendix was changed. GNU ‘diff’ can show this by displaying the nearest section heading line that precedes the differing lines. Which lines are "section headings" is determined by a regular expression. 2.2.3.1 Showing Lines That Match Regular Expressions .................................................... To show in which sections differences occur for files that are not source code for C or similar languages, use the ‘--show-function-line=REGEXP’ (‘-F REGEXP’) option. ‘diff’ considers lines that match the ‘grep’-style regular expression REGEXP to be the beginning of a section of the file. Here are suggested regular expressions for some common languages: ‘^[[:alpha:]$_]’ C, C++, Prolog ‘^(’ Lisp ‘^@node’ Texinfo This option does not automatically select an output format; in order to use it, you must select the context format (*note Context Format::) or unified format (*note Unified Format::). In other output formats it has no effect. The ‘--show-function-line’ (‘-F’) option finds the nearest unchanged line that precedes each hunk of differences and matches the given regular expression. Then it adds that line to the end of the line of asterisks in the context format, or to the ‘@@’ line in unified format. If no matching line exists, this option leaves the output for that hunk unchanged. If that line is more than 40 characters long, it outputs only the first 40 characters. You can specify more than one regular expression for such lines; ‘diff’ tries to match each line against each regular expression, starting with the last one given. This means that you can use ‘-p’ and ‘-F’ together, if you wish. 2.2.3.2 Showing C Function Headings ................................... To show in which functions differences occur for C and similar languages, you can use the ‘--show-c-function’ (‘-p’) option. This option automatically defaults to the context output format (*note Context Format::), with the default number of lines of context. You can override that number with ‘-C LINES’ elsewhere in the command line. You can override both the format and the number with ‘-U LINES’ elsewhere in the command line. The ‘--show-c-function’ (‘-p’) option is equivalent to ‘-F '^[[:alpha:]$_]'’ if the unified format is specified, otherwise ‘-c -F '^[[:alpha:]$_]'’ (*note Specified Headings::). GNU ‘diff’ provides this option for the sake of convenience. 2.2.4 Showing Alternate File Names ---------------------------------- If you are comparing two files that have meaningless or uninformative names, you might want ‘diff’ to show alternate names in the header of the context and unified output formats. To do this, use the ‘--label=LABEL’ option. The first time you give this option, its argument replaces the name and date of the first file in the header; the second time, its argument replaces the name and date of the second file. If you give this option more than twice, ‘diff’ reports an error. The ‘--label’ option does not affect the file names in the ‘pr’ header when the ‘-l’ or ‘--paginate’ option is used (*note Pagination::). Here are the first two lines of the output from ‘diff -C 2 --label=original --label=modified lao tzu’: *** original --- modified 2.3 Showing Differences Side by Side ==================================== ‘diff’ can produce a side by side difference listing of two files. The files are listed in two columns with a gutter between them. The gutter contains one of the following markers: white space The corresponding lines are in common. That is, either the lines are identical, or the difference is ignored because of one of the ‘--ignore’ options (*note White Space::). ‘|’ The corresponding lines differ, and they are either both complete or both incomplete. ‘<’ The files differ and only the first file contains the line. ‘>’ The files differ and only the second file contains the line. ‘(’ Only the first file contains the line, but the difference is ignored. ‘)’ Only the second file contains the line, but the difference is ignored. ‘\’ The corresponding lines differ, and only the first line is incomplete. ‘/’ The corresponding lines differ, and only the second line is incomplete. Normally, an output line is incomplete if and only if the lines that it contains are incomplete. *Note Incomplete Lines::. However, when an output line represents two differing lines, one might be incomplete while the other is not. In this case, the output line is complete, but its the gutter is marked ‘\’ if the first line is incomplete, ‘/’ if the second line is. Side by side format is sometimes easiest to read, but it has limitations. It generates much wider output than usual, and truncates lines that are too long to fit. Also, it relies on lining up output more heavily than usual, so its output looks particularly bad if you use varying width fonts, nonstandard tab stops, or nonprinting characters. You can use the ‘sdiff’ command to interactively merge side by side differences. *Note Interactive Merging::, for more information on merging files. 2.3.1 Controlling Side by Side Format ------------------------------------- The ‘--side-by-side’ (‘-y’) option selects side by side format. Because side by side output lines contain two input lines, the output is wider than usual: normally 130 print columns, which can fit onto a traditional printer line. You can set the width of the output with the ‘--width=COLUMNS’ (‘-W COLUMNS’) option. The output is split into two halves of equal width, separated by a small gutter to mark differences; the right half is aligned to a tab stop so that tabs line up. Input lines that are too long to fit in half of an output line are truncated for output. The ‘--left-column’ option prints only the left column of two common lines. The ‘--suppress-common-lines’ option suppresses common lines entirely. 2.3.2 An Example of Side by Side Format --------------------------------------- Here is the output of the command ‘diff -y -W 72 lao tzu’ (*note Sample diff Input::, for the complete contents of the two files). The Way that can be told of is n < The name that can be named is no < The Nameless is the origin of He The Nameless is the origin of He The Named is the mother of all t | The named is the mother of all t > Therefore let there always be no Therefore let there always be no so we may see their subtlety, so we may see their subtlety, And let there always be being, And let there always be being, so we may see their outcome. so we may see their outcome. The two are the same, The two are the same, But after they are produced, But after they are produced, they have different names. they have different names. > They both may be called deep and > Deeper and more profound, > The door of all subtleties! 2.4 Showing Differences Without Context ======================================= The "normal" ‘diff’ output format shows each hunk of differences without any surrounding context. Sometimes such output is the clearest way to see how lines have changed, without the clutter of nearby unchanged lines (although you can get similar results with the context or unified formats by using 0 lines of context). However, this format is no longer widely used for sending out patches; for that purpose, the context format (*note Context Format::) and the unified format (*note Unified Format::) are superior. Normal format is the default for compatibility with older versions of ‘diff’ and the POSIX standard. Use the ‘--normal’ option to select this output format explicitly. 2.4.1 An Example of Normal Format --------------------------------- Here is the output of the command ‘diff lao tzu’ (*note Sample diff Input::, for the complete contents of the two files). Notice that it shows only the lines that are different between the two files. 1,2d0 < The Way that can be told of is not the eternal Way; < The name that can be named is not the eternal name. 4c2,3 < The Named is the mother of all things. --- > The named is the mother of all things. > 11a11,13 > They both may be called deep and profound. > Deeper and more profound, > The door of all subtleties! 2.4.2 Detailed Description of Normal Format ------------------------------------------- The normal output format consists of one or more hunks of differences; each hunk shows one area where the files differ. Normal format hunks look like this: CHANGE-COMMAND < FROM-FILE-LINE < FROM-FILE-LINE... --- > TO-FILE-LINE > TO-FILE-LINE... There are three types of change commands. Each consists of a line number or comma-separated range of lines in the first file, a single character indicating the kind of change to make, and a line number or comma-separated range of lines in the second file. All line numbers are the original line numbers in each file. The types of change commands are: ‘LaR’ Add the lines in range R of the second file after line L of the first file. For example, ‘8a12,15’ means append lines 12-15 of file 2 after line 8 of file 1; or, if changing file 2 into file 1, delete lines 12-15 of file 2. ‘FcT’ Replace the lines in range F of the first file with lines in range T of the second file. This is like a combined add and delete, but more compact. For example, ‘5,7c8,10’ means change lines 5-7 of file 1 to read as lines 8-10 of file 2; or, if changing file 2 into file 1, change lines 8-10 of file 2 to read as lines 5-7 of file 1. ‘RdL’ Delete the lines in range R from the first file; line L is where they would have appeared in the second file had they not been deleted. For example, ‘5,7d3’ means delete lines 5-7 of file 1; or, if changing file 2 into file 1, append lines 5-7 of file 1 after line 3 of file 2. 2.5 Making Edit Scripts ======================= Several output modes produce command scripts for editing FROM-FILE to produce TO-FILE. 2.5.1 ‘ed’ Scripts ------------------ ‘diff’ can produce commands that direct the ‘ed’ text editor to change the first file into the second file. Long ago, this was the only output mode that was suitable for editing one file into another automatically; today, with ‘patch’, it is almost obsolete. Use the ‘--ed’ (‘-e’) option to select this output format. Like the normal format (*note Normal::), this output format does not show any context; unlike the normal format, it does not include the information necessary to apply the diff in reverse (to produce the first file if all you have is the second file and the diff). If the file ‘d’ contains the output of ‘diff -e old new’, then the command ‘(cat d && echo w) | ed - old’ edits ‘old’ to make it a copy of ‘new’. More generally, if ‘d1’, ‘d2’, ..., ‘dN’ contain the outputs of ‘diff -e old new1’, ‘diff -e new1 new2’, ..., ‘diff -e newN-1 newN’, respectively, then the command ‘(cat d1 d2 ... dN && echo w) | ed - old’ edits ‘old’ to make it a copy of ‘newN’. 2.5.1.1 Example ‘ed’ Script ........................... Here is the output of ‘diff -e lao tzu’ (*note Sample diff Input::, for the complete contents of the two files): 11a They both may be called deep and profound. Deeper and more profound, The door of all subtleties! . 4c The named is the mother of all things. . 1,2d 2.5.1.2 Detailed Description of ‘ed’ Format ........................................... The ‘ed’ output format consists of one or more hunks of differences. The changes closest to the ends of the files come first so that commands that change the number of lines do not affect how ‘ed’ interprets line numbers in succeeding commands. ‘ed’ format hunks look like this: CHANGE-COMMAND TO-FILE-LINE TO-FILE-LINE... . Because ‘ed’ uses a single period on a line to indicate the end of input, GNU ‘diff’ protects lines of changes that contain a single period on a line by writing two periods instead, then writing a subsequent ‘ed’ command to change the two periods into one. The ‘ed’ format cannot represent an incomplete line, so if the second file ends in a changed incomplete line, ‘diff’ reports an error and then pretends that a newline was appended. There are three types of change commands. Each consists of a line number or comma-separated range of lines in the first file and a single character indicating the kind of change to make. All line numbers are the original line numbers in the file. The types of change commands are: ‘La’ Add text from the second file after line L in the first file. For example, ‘8a’ means to add the following lines after line 8 of file 1. ‘Rc’ Replace the lines in range R in the first file with the following lines. Like a combined add and delete, but more compact. For example, ‘5,7c’ means change lines 5-7 of file 1 to read as the text file 2. ‘Rd’ Delete the lines in range R from the first file. For example, ‘5,7d’ means delete lines 5-7 of file 1. 2.5.2 Forward ‘ed’ Scripts -------------------------- ‘diff’ can produce output that is like an ‘ed’ script, but with hunks in forward (front to back) order. The format of the commands is also changed slightly: command characters precede the lines they modify, spaces separate line numbers in ranges, and no attempt is made to disambiguate hunk lines consisting of a single period. Like ‘ed’ format, forward ‘ed’ format cannot represent incomplete lines. Forward ‘ed’ format is not very useful, because neither ‘ed’ nor ‘patch’ can apply diffs in this format. It exists mainly for compatibility with older versions of ‘diff’. Use the ‘-f’ or ‘--forward-ed’ option to select it. 2.5.3 RCS Scripts ----------------- The RCS output format is designed specifically for use by the Revision Control System, which is a set of free programs used for organizing different versions and systems of files. Use the ‘--rcs’ (‘-n’) option to select this output format. It is like the forward ‘ed’ format (*note Forward ed::), but it can represent arbitrary changes to the contents of a file because it avoids the forward ‘ed’ format's problems with lines consisting of a single period and with incomplete lines. Instead of ending text sections with a line consisting of a single period, each command specifies the number of lines it affects; a combination of the ‘a’ and ‘d’ commands are used instead of ‘c’. Also, if the second file ends in a changed incomplete line, then the output also ends in an incomplete line. Here is the output of ‘diff -n lao tzu’ (*note Sample diff Input::, for the complete contents of the two files): d1 2 d4 1 a4 2 The named is the mother of all things. a11 3 They both may be called deep and profound. Deeper and more profound, The door of all subtleties! 2.6 Merging Files with If-then-else =================================== You can use ‘diff’ to merge two files of C source code. The output of ‘diff’ in this format contains all the lines of both files. Lines common to both files are output just once; the differing parts are separated by the C preprocessor directives ‘#ifdef NAME’ or ‘#ifndef NAME’, ‘#else’, and ‘#endif’. When compiling the output, you select which version to use by either defining or leaving undefined the macro NAME. To merge two files, use ‘diff’ with the ‘-D NAME’ or ‘--ifdef=NAME’ option. The argument NAME is the C preprocessor identifier to use in the ‘#ifdef’ and ‘#ifndef’ directives. For example, if you change an instance of ‘wait (&s)’ to ‘waitpid (-1, &s, 0)’ and then merge the old and new files with the ‘--ifdef=HAVE_WAITPID’ option, then the affected part of your code might look like this: do { #ifndef HAVE_WAITPID if ((w = wait (&s)) < 0 && errno != EINTR) #else /* HAVE_WAITPID */ if ((w = waitpid (-1, &s, 0)) < 0 && errno != EINTR) #endif /* HAVE_WAITPID */ return w; } while (w != child); You can specify formats for languages other than C by using line group formats and line formats, as described in the next sections. 2.6.1 Line Group Formats ------------------------ Line group formats let you specify formats suitable for many applications that allow if-then-else input, including programming languages and text formatting languages. A line group format specifies the output format for a contiguous group of similar lines. For example, the following command compares the TeX files ‘old’ and ‘new’, and outputs a merged file in which old regions are surrounded by ‘\begin{em}’-‘\end{em}’ lines, and new regions are surrounded by ‘\begin{bf}’-‘\end{bf}’ lines. diff \ --old-group-format='\begin{em} %<\end{em} ' \ --new-group-format='\begin{bf} %>\end{bf} ' \ old new The following command is equivalent to the above example, but it is a little more verbose, because it spells out the default line group formats. diff \ --old-group-format='\begin{em} %<\end{em} ' \ --new-group-format='\begin{bf} %>\end{bf} ' \ --unchanged-group-format='%=' \ --changed-group-format='\begin{em} %<\end{em} \begin{bf} %>\end{bf} ' \ old new Here is a more advanced example, which outputs a diff listing with headers containing line numbers in a "plain English" style. diff \ --unchanged-group-format='' \ --old-group-format='-------- %dn line%(n=1?:s) deleted at %df: %<' \ --new-group-format='-------- %dN line%(N=1?:s) added after %de: %>' \ --changed-group-format='-------- %dn line%(n=1?:s) changed at %df: %<-------- to: %>' \ old new To specify a line group format, use ‘diff’ with one of the options listed below. You can specify up to four line group formats, one for each kind of line group. You should quote FORMAT, because it typically contains shell metacharacters. ‘--old-group-format=FORMAT’ These line groups are hunks containing only lines from the first file. The default old group format is the same as the changed group format if it is specified; otherwise it is a format that outputs the line group as-is. ‘--new-group-format=FORMAT’ These line groups are hunks containing only lines from the second file. The default new group format is same as the changed group format if it is specified; otherwise it is a format that outputs the line group as-is. ‘--changed-group-format=FORMAT’ These line groups are hunks containing lines from both files. The default changed group format is the concatenation of the old and new group formats. ‘--unchanged-group-format=FORMAT’ These line groups contain lines common to both files. The default unchanged group format is a format that outputs the line group as-is. In a line group format, ordinary characters represent themselves; conversion specifications start with ‘%’ and have one of the following forms. ‘%<’ stands for the lines from the first file, including the trailing newline. Each line is formatted according to the old line format (*note Line Formats::). ‘%>’ stands for the lines from the second file, including the trailing newline. Each line is formatted according to the new line format. ‘%=’ stands for the lines common to both files, including the trailing newline. Each line is formatted according to the unchanged line format. ‘%%’ stands for ‘%’. ‘%c'C'’ where C is a single character, stands for C. C may not be a backslash or an apostrophe. For example, ‘%c':'’ stands for a colon, even inside the then-part of an if-then-else format, which a colon would normally terminate. ‘%c'\O'’ where O is a string of 1, 2, or 3 octal digits, stands for the character with octal code O. For example, ‘%c'\0'’ stands for a null character. ‘FN’ where F is a ‘printf’ conversion specification and N is one of the following letters, stands for N's value formatted with F. ‘e’ The line number of the line just before the group in the old file. ‘f’ The line number of the first line in the group in the old file; equals E + 1. ‘l’ The line number of the last line in the group in the old file. ‘m’ The line number of the line just after the group in the old file; equals L + 1. ‘n’ The number of lines in the group in the old file; equals L - F + 1. ‘E, F, L, M, N’ Likewise, for lines in the new file. The ‘printf’ conversion specification can be ‘%d’, ‘%o’, ‘%x’, or ‘%X’, specifying decimal, octal, lower case hexadecimal, or upper case hexadecimal output respectively. After the ‘%’ the following options can appear in sequence: a series of zero or more flags; an integer specifying the minimum field width; and a period followed by an optional integer specifying the minimum number of digits. The flags are ‘-’ for left-justification, ‘'’ for separating the digit into groups as specified by the ‘LC_NUMERIC’ locale category, and ‘0’ for padding with zeros instead of spaces. For example, ‘%5dN’ prints the number of new lines in the group in a field of width 5 characters, using the ‘printf’ format ‘"%5d"’. ‘(A=B?T:E)’ If A equals B then T else E. A and B are each either a decimal constant or a single letter interpreted as above. This format spec is equivalent to T if A's value equals B's; otherwise it is equivalent to E. For example, ‘%(N=0?no:%dN) line%(N=1?:s)’ is equivalent to ‘no lines’ if N (the number of lines in the group in the new file) is 0, to ‘1 line’ if N is 1, and to ‘%dN lines’ otherwise. 2.6.2 Line Formats ------------------ Line formats control how each line taken from an input file is output as part of a line group in if-then-else format. For example, the following command outputs text with a one-character change indicator to the left of the text. The first character of output is ‘-’ for deleted lines, ‘|’ for added lines, and a space for unchanged lines. The formats contain newline characters where newlines are desired on output. diff \ --old-line-format='-%l ' \ --new-line-format='|%l ' \ --unchanged-line-format=' %l ' \ old new To specify a line format, use one of the following options. You should quote FORMAT, since it often contains shell metacharacters. ‘--old-line-format=FORMAT’ formats lines just from the first file. ‘--new-line-format=FORMAT’ formats lines just from the second file. ‘--unchanged-line-format=FORMAT’ formats lines common to both files. ‘--line-format=FORMAT’ formats all lines; in effect, it sets all three above options simultaneously. In a line format, ordinary characters represent themselves; conversion specifications start with ‘%’ and have one of the following forms. ‘%l’ stands for the contents of the line, not counting its trailing newline (if any). This format ignores whether the line is incomplete; *Note Incomplete Lines::. ‘%L’ stands for the contents of the line, including its trailing newline (if any). If a line is incomplete, this format preserves its incompleteness. ‘%%’ stands for ‘%’. ‘%c'C'’ where C is a single character, stands