- 9 Best File Comparison and Difference (Diff) Tools for Linux
- 1. diff Command
- colordiff Command
- wdiff Command
- 2. Vimdiff Command
- 3. Kompare
- 4. DiffMerge
- 5. Meld – Diff Tool
- 6. Diffuse – GUI Diff Tool
- 7. XXdiff – Diff and Merge Tool
- 8. KDiff3 – – Diff and Merge Tool
- 9. TkDiff
- If You Appreciate What We Do Here On TecMint, You Should Consider:
- How to Find Difference Between Two Directories Using Diff and Meld Tools
- Using Meld Visual Diff and Merge Tool
- If You Appreciate What We Do Here On TecMint, You Should Consider:
- Compare files in two different directories in Linux
- 2 Answers 2
- Sign up or log in
- Post as a guest
9 Best File Comparison and Difference (Diff) Tools for Linux
While writing program files or normal text files, programmers and writers sometimes want to know the difference between two files or two versions of the same file. When you compare two computer files on Linux, the difference between their contents is called a diff. This description was born out of a reference to the output of diff, the well known Unix command-line file comparison utility.
9 Best Linux File Diff or Comparison Tools
There are several file comparison tools that you can use on Linux, and in this review, we shall look at some of the best terminal based and GUI diff tools you can take advantage of while writing code or other text files.
1. diff Command
I like to start with the original Unix command-line tool that shows you the difference between two computer files. Diff is simple and easy to use, it comes pre-installed on most Linux distributions. It compares files line by line and outputs the difference between them.
You can check out the manual entry for diff to easily use it.
Linux diff Command to Compare Files
There are some wrappers for the diff tool that enhance its functionality and these include:
colordiff Command
Colordiff is a Perl script that produces same output as diff, but with color and syntax highlighting. It has customizable color schemes.
You can install Colordiff on your Linux systems, using default package manager tools called yum, dnf or apt-get as shown.
You can check out the manual entry for Colordiff as shown.
Linux Colordiff Command – Color diff Output
wdiff Command
The wdiff utility is a front end to diff command used to compare files on a word by word basis. This program is very useful when comparing two texts for changed words and for which paragraphs have been refilled.
To install wdiff on your Linux systems, run:
Use wdiff manual for how to use it on Linux.
wdiff Compare Two Files in Linux
2. Vimdiff Command
Vimdiff works in an advanced manner in comparison to diff utility. It enables a user to edit up to four versions of a file while showing their differences. When you run it, Vimdiff opens two or three or four files using vim text editor.
Vimdiff Edit Multiple Files for Differences
Having looked the old school diff tools, lets quickly move to some GUI diff tools available on Linux.
3. Kompare
Kompare is a diff GUI wrapper that allows users to view differences between files and also merge them.
Some of its features include:
- Supports multiple diff formats
- Supports comparison of directories
- Supports reading diff files
- Customizable interface
- Creating and applying patches to source files
Kompare Tool – Compare Two Files in Linux
4. DiffMerge
DiffMerge is a cross-platform GUI application for comparing and merging files. It has two functionality engines, the Diff engine which shows the difference between two files, which supports intra-line highlighting and editing and a Merge engine which outputs the changed lines between three files.
It has got the following features:
- Supports directory comparison
- File browser integration
- Highly configurable
DiffMerge – Compare Files in Linux
5. Meld – Diff Tool
Meld is a lightweight GUI diff and merge tool. It enables users to compare files, directories plus version controlled programs. Built specifically for developers, it comes with the following features:
- Two-way and three-way comparison of files and directories
- Update of file comparison as a users types more words
- Makes merges easier using auto-merge mode and actions on changed blocks
- Easy comparisons using visualizations
- Supports Git, Mercurial, Subversion, Bazaar plus many more
Meld – A Diff Tool to Compare File in Linux
6. Diffuse – GUI Diff Tool
Diffuse is another popular, free, small and simple GUI diff and merge tool that you can use on Linux. Written in Python, It offers two major functionalities, that is: file comparison and version control, allowing file editing, merging of files and also output the difference between files.
You can view a comparison summary, select lines of text in files using a mouse pointer, match lines in adjacent files and edit different file. Other features include:
- Syntax highlighting
- Keyboard shortcuts for easy navigation
- Supports unlimited undo
- Unicode support
- Supports Git, CVS, Darcs, Mercurial, RCS, Subversion, SVK and Monotone
DiffUse – A Tool to Compare Text Files in Linux
7. XXdiff – Diff and Merge Tool
XXdiff is a free, powerful file and directory comparator and merge tool that runs on Unix like operating systems such as Linux, Solaris, HP/UX, IRIX, DEC Tru64. One limitation of XXdiff is its lack of support for unicode files and inline editing of diff files.
It has the following list of features:
- Shallow and recursive comparison of two, three file or two directories
- Horizontal difference highlighting
- Interactive merging of files and saving of resulting output
- Supports merge reviews/policing
- Supports external diff tools such as GNU diff, SIG diff, Cleareddiff and many more
- Extensible using scripts
- Fully customizable using resource file plus many other minor features
xxdiff Tool
8. KDiff3 – – Diff and Merge Tool
KDiff3 is yet another cool, cross-platform diff and merge tool made from KDevelop. It works on all Unix-like platforms including Linux and Mac OS X, Windows.
It can compare or merge two to three files or directories and has the following notable features:
- Indicates differences line by line and character by character
- Supports auto-merge
- In-built editor to deal with merge-conflicts
- Supports Unicode, UTF-8 and many other codecs
- Allows printing of differences
- Windows explorer integration support
- Also supports auto-detection via byte-order-mark “BOM”
- Supports manual alignment of lines
- Intuitive GUI and many more
KDiff3 Tool for Linux
9. TkDiff
TkDiff is also a cross-platform, easy-to-use GUI wrapper for the Unix diff tool. It provides a side-by-side view of the differences between two input files. It can run on Linux, Windows and Mac OS X.
Additionally, it has some other exciting features including diff bookmarks, a graphical map of differences for easy and quick navigation plus many more.
Having read this review of some of the best file and directory comparator and merge tools, you probably want to try out some of them. These may not be the only diff tools available you can find on Linux, but they are known to offer some the best features, you may also want to let us know of any other diff tools out there that you have tested and think deserve to be mentioned among the best.
If You Appreciate What We Do Here On TecMint, You Should Consider:
TecMint is the fastest growing and most trusted community site for any kind of Linux Articles, Guides and Books on the web. Millions of people visit TecMint! to search or browse the thousands of published articles available FREELY to all.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
We are thankful for your never ending support.
Источник
How to Find Difference Between Two Directories Using Diff and Meld Tools
In an earlier article, we reviewed 9 best file comparison and difference (Diff) tools for Linux and in this article, we will describe how to find the difference between two directories in Linux.
Normally, to compare two files in Linux, we use the diff – a simple and original Unix command-line tool that shows you the difference between two computer files; compares files line by line and it is easy to use, comes with pre-installed on most if not all Linux distributions.
The question is how do we get the difference between two directories in Linux? Here, we want to know what files/subdirectories are common in the two directories, those that are present in one directory but not in the other.
The conventional syntax for running diff is as follows:
By default, its output is ordered alphabetically by file/subdirectory name as shown in the screenshot below. In this command, the -q switch tells diff to report only when files differ.
Difference Between Two Directories
Again diff doesn’t go into the subdirectories, but we can use the -r switch to read the subdirectories as well like this.
Using Meld Visual Diff and Merge Tool
There is a cool graphical option called meld (a visual diff and merge tool for the GNOME Desktop) for those who enjoy using the mouse, you can install it as follows.
Once you have installed it, search for “meld” in the Ubuntu Dash or Linux Mint Menu, in Activities Overview in Fedora or CentOS desktop and launch it.
You will see the Meld interface below, where you can choose file or directory comparison as well as version control view. Click on directory comparison and move to the next interface.
Meld Comparison Tool
Select the directories you want to compare, note that you can add a third directory by checking the option “3-way Comparison”.
Select Comparison Directories
Once you selected the directories, click on “Compare”.
Listing Difference Between Directories
In this article, we described how to find the difference between two directories in Linux. If you know any other commandline or gui way don’t forget to share your thoughts to this article via the comment section below.
If You Appreciate What We Do Here On TecMint, You Should Consider:
TecMint is the fastest growing and most trusted community site for any kind of Linux Articles, Guides and Books on the web. Millions of people visit TecMint! to search or browse the thousands of published articles available FREELY to all.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
We are thankful for your never ending support.
Источник
Compare files in two different directories in Linux
A shell script which shows differences in multiple files in two different directories and also possibly create an output file including where all mismatches were found.
File dir1/file1 compare only with dir2/file1 (similarly for other files — file2 compare with file2)
If any changes found: status should be «Miss-match FOUND in file file1 for example» and same thing should do for all other files as well and write a all of the results into a one file
Thanks in advance
2 Answers 2
Use the diff command. Using the -r flag you can compare folders recursively:
The output will be in a format which the patch command understands. You can save it in a file and apply those changes to dir1 using
If you deal with text files and want to just see the differences, I would customize the diff output, as hek2mgl suggested. But if you want more control, for example to execute some commands after finding different files or you must compare binary files, you may utilize find and cmp .
Below is the sample, which you may customize:
Depending on your situation (if filenames do not contain spaces, there are no missing files, etc.) you may omit some parts — this was just tailored from a larger script.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Sign up or log in
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy
Источник