How to Compare Local and Remote Files in Linux

In this article, we will show how to compare or find the difference between local and remote files in Linux. In a recent post, we reviewed 9 best file comparison and difference (Diff) tools for Linux. One of the tools we covered was diff.

diff (short for difference) is a simple and easy to use tool which analyzes two files and displays the differences in the files by comparing the files line by line. It prints the lines that are different. Importantly, if you want the two files to be identical to each other, diff also outputs a set of useful instructions on how to change one file to make it identical to the second file.

To compare or find the difference between two files on different servers, run the following command. Remember to replace the user and remote host with your actual parameters.

$ ssh [email protected] "cat /home/root/file_remote" | diff  - file_local 
Compare Two Files on Different Servers
Compare Two Files on Different Servers

Note that you can also save the difference between the two files to a file, using the output redirection feature. For example:

$ ssh [email protected] "cat /home/root/file_remote" | diff  -  file_local > diff_output.txt

Then use a cat command to view the contents of the diff_output.txt file.

$ cat diff_output.txt
OR
$ bcat diff_output.txt

In addition, you can also compare or find the difference between two files on two remote servers, as shown:

$ diff <(ssh [email protected] 'cat /path/to/file1') <(ssh [email protected] 'cat /path/to/file2')

For more information, consult the diff man page as shown.

$ man diff

Also, check out:

  1. How to Find Difference Between Two Directories Using Diff and Meld Tools
  2. Linux sdiff Command Examples for Linux Newbies
  3. A – Z Linux Commands – Overview with Examples

That’s it for now! In this article, we have shown how to compare or find the difference between two files on different servers. Share your thoughts with us or ask questions via the feedback form below.

Tutorial Feedback...
Was this article helpful? If you don't find this article helpful or found some outdated info, issue or a typo, do post your valuable feedback or suggestions in the comments to help improve this article...

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.

Support Us

We are thankful for your never ending support.

2 thoughts on “How to Compare Local and Remote Files in Linux”

Got something to say? Join the discussion.

Have a question or suggestion? Please leave a comment to start the discussion. Please keep in mind that all comments are moderated and your email address will NOT be published.