diff is a Unix utility that outputs the difference between two text files. It is invoked from the command line with the name of two files:

 $ diff firstone.txt secondone.txt

In unified format, each line that occurs only in the left file is preceded by a minus sign, each line that occurs only in the right file is preceded by a plus sign, and common lines are preceded by a space.

Lines beginning with three plus signs indicate the number of lines in each hunk, the file names, and where in the files to find them. Diffs are often used as input to the patch program.

The GNU Project has an implementation of diff (and diff3), in the diffutils package.

The Windows utility WinMerge is based on the GNU diffutils engine, as a way to provide a graphical display of the same information. There are other such utilities, for various platforms.