Skip to main content
ubuntuask.com

Back to all posts

How to Compare Two Files In Linux?

Published on
5 min read
How to Compare Two Files In Linux? image

Best File Comparison Tools in Linux to Buy in October 2025

1 REXBETI 25Pcs Metal File Set, Premium Grade T12 Drop Forged Alloy Steel, Flat/Triangle/Half-round/Round Large File and 12pcs Needle Files with Carry Case, 6pcs Sandpaper, Brush, A Pair Working Gloves

REXBETI 25Pcs Metal File Set, Premium Grade T12 Drop Forged Alloy Steel, Flat/Triangle/Half-round/Round Large File and 12pcs Needle Files with Carry Case, 6pcs Sandpaper, Brush, A Pair Working Gloves

  • DURABLE T12 ALLOY STEEL FOR LONG-LASTING PERFORMANCE AND PRECISION.
  • COMPLETE 25-PIECE SET FOR ALL YOUR WOODWORKING NEEDS IN ONE CASE.
  • ERGONOMIC RUBBER HANDLE FOR COMFORT DURING EXTENDED USE WITHOUT FATIGUE.
BUY & SAVE
$25.99
REXBETI 25Pcs Metal File Set, Premium Grade T12 Drop Forged Alloy Steel, Flat/Triangle/Half-round/Round Large File and 12pcs Needle Files with Carry Case, 6pcs Sandpaper, Brush, A Pair Working Gloves
2 Hurricane 21 PCS Interchangeable Metal File Set,8 inch File Tool Set Include Flat/Triangle/Half-Round/Round Large Files & 12 Needle Files with Universal Quick Change Handles and Carrying Bag

Hurricane 21 PCS Interchangeable Metal File Set,8 inch File Tool Set Include Flat/Triangle/Half-Round/Round Large Files & 12 Needle Files with Universal Quick Change Handles and Carrying Bag

  • ALL-IN-ONE KIT: 21 VERSATILE FILES FOR ALL YOUR CRAFTING NEEDS.
  • ERGONOMIC & LIGHTWEIGHT: QUICK-CHANGE HANDLE MINIMIZES FATIGUE WHILE WORKING.
  • DURABLE QUALITY: PREMIUM T12 STEEL ENSURES LONG-LASTING, PRECISE CUTS.
BUY & SAVE
$13.99 $23.99
Save 42%
Hurricane 21 PCS Interchangeable Metal File Set,8 inch File Tool Set Include Flat/Triangle/Half-Round/Round Large Files & 12 Needle Files with Universal Quick Change Handles and Carrying Bag
3 Devvicoo 17 PCS Metal File Set Upgraded Hemicycle, Angle, Round, Flat & Needle Files for Plastic, Wood, Metal Projects - Alloy Steel Hand Tools with Storage Case

Devvicoo 17 PCS Metal File Set Upgraded Hemicycle, Angle, Round, Flat & Needle Files for Plastic, Wood, Metal Projects - Alloy Steel Hand Tools with Storage Case

  • DURABLE T12 ALLOY STEEL: HEAT-TREATED FILES FOR MAXIMUM WEAR RESISTANCE.

  • COMPLETE FILES KIT: 4 LARGE AND 12 PRECISION FILES FOR DIVERSE TASKS.

  • ERGONOMIC GRIP: SOFT HANDLES ENSURE COMFORT AND REDUCE HAND FATIGUE.

BUY & SAVE
$14.99 $15.99
Save 6%
Devvicoo 17 PCS Metal File Set Upgraded Hemicycle, Angle, Round, Flat & Needle Files for Plastic, Wood, Metal Projects - Alloy Steel Hand Tools with Storage Case
4 Hi-Spec 17 Piece Metal Hand & Needle File Tool Kit Set. Large & Small Mini T12 Carbon Steel Flat, Half-Round, Round & Triangle Files. Complete in a Zipper Case with a Brush

Hi-Spec 17 Piece Metal Hand & Needle File Tool Kit Set. Large & Small Mini T12 Carbon Steel Flat, Half-Round, Round & Triangle Files. Complete in a Zipper Case with a Brush

  • COMPLETE SET FOR ALL TASKS: 4 MACHINIST FILES + 12 NEEDLE FILES INCLUDED.

  • BUILT TO LAST: CRAFTED FROM DURABLE T12 HIGH-CARBON STEEL FOR LONGEVITY.

  • COMPACT & ORGANIZED: INCLUDES STURDY STORAGE CASE FOR EASY TRANSPORT.

BUY & SAVE
$24.99
Hi-Spec 17 Piece Metal Hand & Needle File Tool Kit Set. Large & Small Mini T12 Carbon Steel Flat, Half-Round, Round & Triangle Files. Complete in a Zipper Case with a Brush
5 CRAFTSMAN Needle File Set, 6 Piece (CMHT82529)

CRAFTSMAN Needle File Set, 6 Piece (CMHT82529)

  • PRECISION NEEDLE FILES FOR FLAWLESS SMALL PROJECT RESULTS.
  • COMFORTABLE RUBBER HANDLES ENSURE EFFORTLESS, SECURE GRIP.
  • SMOOTH PATTERN ALLOWS FOR LIGHT, CONTROLLED MATERIAL REMOVAL.
BUY & SAVE
$13.53
CRAFTSMAN Needle File Set, 6 Piece (CMHT82529)
6 Tsubosan Hand tool Workmanship file set of 5 ST-06 from Japan

Tsubosan Hand tool Workmanship file set of 5 ST-06 from Japan

  • PRECISION SHAPING FOR SMOOTH FINISHES ON VARIOUS MATERIALS.
  • ERGONOMIC DESIGN FOR COMFORTABLE GRIP DURING EXTENDED USE.
  • DURABLE CONSTRUCTION ENSURES LONGEVITY AND CONSISTENT PERFORMANCE.
BUY & SAVE
$28.00 $30.00
Save 7%
Tsubosan Hand tool Workmanship file set of 5 ST-06 from Japan
7 Small Hand Files Set for Detail and Precise Work, Hardened Alloy Strength Steel File Tools Includes Square,Equaling,Round,Flat Warding,Triangle

Small Hand Files Set for Detail and Precise Work, Hardened Alloy Strength Steel File Tools Includes Square,Equaling,Round,Flat Warding,Triangle

  • DURABLE CARBON STEEL FOR LONG-LASTING CUTTING PERFORMANCE.
  • ERGONOMIC RUBBER HANDLE ENSURES COMFORT DURING EXTENDED USE.
  • VERSATILE FOR PRECISION WORK ON VARIOUS MATERIALS AND SURFACES.
BUY & SAVE
$3.99
Small Hand Files Set for Detail and Precise Work, Hardened Alloy Strength Steel File Tools Includes Square,Equaling,Round,Flat Warding,Triangle
8 TARIST 12PCS Needle File Set with Tool Bag, Small File Set Includes 6pcs Jewlers Files & 6 Steel Files for Metal, Jewlers, Wood, Leather and Plastic

TARIST 12PCS Needle File Set with Tool Bag, Small File Set Includes 6pcs Jewlers Files & 6 Steel Files for Metal, Jewlers, Wood, Leather and Plastic

  • PREMIUM CARBON STEEL FOR DURABLE, HIGH-PERFORMANCE FILING.
  • VERSATILE USE ON METAL, WOOD, PLASTICS, CERAMICS, AND GLASS.
  • RESPONSIVE AFTER-SALES SUPPORT WITHIN 24 HOURS, GUARANTEED SATISFACTION!
BUY & SAVE
$14.39 $19.80
Save 27%
TARIST 12PCS Needle File Set with Tool Bag, Small File Set Includes 6pcs Jewlers Files & 6 Steel Files for Metal, Jewlers, Wood, Leather and Plastic
+
ONE MORE?

To compare two files in Linux, you can use the 'diff' command. Here's how you can do it:

  1. Open the terminal on your Linux system.
  2. Type the following command: diff file1 file2 - Replace 'file1' and 'file2' with the actual names of the files you want to compare.
  3. Press Enter to execute the command.

Once you run the command, 'diff' will compare the two files and display the differences between them. The differences are displayed in terms of added or deleted lines. Lines with changes will be printed with '<' or '>', indicating the respective file each line belongs to.

For example, let's assume you have two files named 'file1.txt' and 'file2.txt'. To compare them, you would run the command diff file1.txt file2.txt. 'diff' will then analyze the files and show the differences between them in the terminal.

It's important to note that 'diff' is a powerful command with several options to customize the output. You can use options like '-c' or '-u' to display the differences in more comprehensive formats, or '-q' for a brief output indicating if the files differ or not.

What is the use of the sdiff command and how to compare two files using it?

The "sdiff" command is used to compare and merge two files side by side. It displays the content of both files on the terminal, highlighting the differences between them.

The syntax of the sdiff command is as follows: sdiff [options] file1 file2

Here are some commonly used options:

  • -s or --suppress-common-lines: Hides the common lines between the two files.
  • -w or --width=num: Sets the width of the output line to 'num' characters.
  • -o file or --output=file: Specifies an output file to save the comparison.

To compare two files using sdiff, open your terminal and type: sdiff file1.txt file2.txt

This will display the content of both files side by side, highlighting the differences. Common lines will not be shown by default. You can use the options mentioned above to customize the output according to your requirements.

What is the use of the cmp command with the -l option for detailed comparison in Linux?

The "cmp" command in Linux is used to compare two files byte-by-byte and determine if there are any differences. By default, it only displays the first differing bytes and their respective byte positions.

However, when used with the "-l" option, the "cmp" command provides a detailed comparison. It displays a list of all differing bytes in both files, along with their byte positions. This option is useful when you need a comprehensive report of all differences between two files, allowing you to analyze and understand the discrepancies more thoroughly.

How to compare two files and display only differences in Linux?

To compare two files and display only the differences in Linux, you can use the diff command. Here's how you can do it:

  1. Open the Terminal in Linux.
  2. Use the following command structure:

diff [options]

Replace <file1> and <file2> with the names or paths of the files you want to compare.

  1. Run the command to see the differences between the two files. By default, the output will display the lines that differ between the two files.

For example, if you want to compare the files "file1.txt" and "file2.txt" located in the current directory, the command would be:

diff file1.txt file2.txt

The output will highlight the differences between the two files, showing added or deleted lines and changes within lines.

You can also use various options with diff command to modify the output behavior. Some commonly used options include:

  • -i or --ignore-case: Ignore case differences while comparing files.
  • -w or --ignore-all-space: Ignore all white space differences.
  • -b or --ignore-space-change: Ignore changes in the amount of white space.
  • -q or --brief: Only show whether files differ, rather than the actual differences.

To learn more about the available options, you can refer to the diff command's manual pages by running:

man diff

What is the output format of the diff command in Linux?

The output format of the diff command in Linux can vary depending on several factors, such as the options or flags used and the number and nature of the differences being compared. However, the most common output format consists of a series of lines preceded by symbols indicating the type of change. The common symbols used in the output are:

  • "-" symbol indicates a line or lines present only in the first file being compared.
  • "+" symbol indicates a line or lines present only in the second file being compared.
  • "!" symbol indicates a line or lines that have been changed between the two files.
  • "=" symbol indicates a line that is common between the two files being compared.

The output may also include additional information, such as line numbers and file names, depending on the options used.