The command diff from the package diffutils compares files line by line. It comes in very handy when you would like to check if there were recent changes to a file since the last backup and what they are. An exit status of 0 means no differences were found, 1 means some differences were found, and 2 means trouble. And of course, if there are changes, diff will show them to you. But let’s take a look at some examples.
Example 1: Both files have the same content
Alice and Bob are each having a barbecue and have published their menus. To decide which menu I would enjoy most, I could compare the menus as follows:
$ diff menu1 menu2
$ echo $?
0
$ cat menu{1,2}
# The menu
* Spare Ribs
* Brisket
* Pulled Pork
# The menu
* Spare Ribs
* Brisket
* Pulled Pork
You see, both are serving spare ribs, brisket, and pulled pork. There is no difference between both files. Maybe Alice and Bob should join forces to host a really huge barbecue.
When Eve heard that Alice and Bob were throwing parties, she got jealous and decided to host a barbecue as well. Her menu comes with the file menu3. Well, let’s see what the differences in her menu are compared to Alice's and Bob's.
Example 2: Now there are drinks involved
$ diff menu1 menu3
4a5,8
>
> # Drinks
> * Soda
> * Beer
$ echo $?
1
$
There are differences now. And, with the output in the first line, diff tells us what has to be added (a) to menu1 so that it has the same content as menu3. So, 4a5,8 means that you have to add some lines after line 4 in menu1 so that it looks like lines 5-8 in menu3.
When switching the position of the files, the output looks different:
$ diff menu3 menu1
5,8d4
<
< # Drinks
< * Soda
< * Beer
Now, diff is telling us that the lines 5-8 in menu3 have to be deleted (d) to make the file identical with menu1.
Example 3: When there is something to change
I’ve edited menu1 and menu2 again to look like this:
# The menu
* Spare Ribs
* Brisket
* Pulled Pork
# The menu
* Spare Ribs
* Pulled Pork
* Pulled Pork
This time, diff is going to show us which line has to be changed (c) to make both files look the same:
$ diff menu1 menu2
3c3
< * Brisket
---
> * Pulled Pork
Wrapping it up
The diff command is an easy and flexible to use tool to compare files line by line. Take a look at diff(1) to figure out what else can be done with diff.
[ Want to test your sysadmin skills? Take a skills assessment today. ]
執筆者紹介
Jörg has been a Sysadmin for over ten years now. His fields of operation include Virtualization (VMware), Linux System Administration and Automation (RHEL), Firewalling (Forcepoint), and Loadbalancing (F5). He is a member of the Red Hat Accelerators Community and author of his personal blog at https://www.my-it-brain.de.
類似検索
More than meets the eye: Behind the scenes of Red Hat Enterprise Linux 10 (Part 6)
Red Hat Enterprise Linux now available on the AWS European Sovereign Cloud
The Overlooked Operating System | Compiler: Stack/Unstuck
Linux, Shadowman, And Open Source Spirit | Compiler
チャンネル別に見る
自動化
テクノロジー、チームおよび環境に関する IT 自動化の最新情報
AI (人工知能)
お客様が AI ワークロードをどこでも自由に実行することを可能にするプラットフォームについてのアップデート
オープン・ハイブリッドクラウド
ハイブリッドクラウドで柔軟に未来を築く方法をご確認ください。
セキュリティ
環境やテクノロジー全体に及ぶリスクを軽減する方法に関する最新情報
エッジコンピューティング
エッジでの運用を単純化するプラットフォームのアップデート
インフラストラクチャ
世界有数のエンタープライズ向け Linux プラットフォームの最新情報
アプリケーション
アプリケーションの最も困難な課題に対する Red Hat ソリューションの詳細
仮想化
オンプレミスまたは複数クラウドでのワークロードに対応するエンタープライズ仮想化の将来についてご覧ください