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.

UI_Icon-Red_Hat-Close-A-Black-RGB

按频道浏览

automation icon

自动化

有关技术、团队和环境 IT 自动化的最新信息

AI icon

人工智能

平台更新使客户可以在任何地方运行人工智能工作负载

open hybrid cloud icon

开放混合云

了解我们如何利用混合云构建更灵活的未来

security icon

安全防护

有关我们如何跨环境和技术减少风险的最新信息

edge icon

边缘计算

简化边缘运维的平台更新

Infrastructure icon

基础架构

全球领先企业 Linux 平台的最新动态

application development icon

应用领域

我们针对最严峻的应用挑战的解决方案

Virtualization icon

虚拟化

适用于您的本地或跨云工作负载的企业虚拟化的未来