在Linux中并排显示文件


简介

在Linux上处理文件通常需要同时比较或分析多个文件。一种有用的方法是在终端并排查看文件,以便于比较和分析。在本文中,我们将探讨在Linux上并排查看文件的各种方法,包括使用diffsdiff命令,以及使用vimemacs文本编辑器。

使用diff命令

diff命令是一个标准的Linux实用程序,用于比较两个文件并显示它们之间的差异。可以使用“-y”或“--side-by-side”标志将其用于并排查看文件。

要使用diff命令,只需输入命令后跟要比较的两个文件的名称,如下所示:

$ diff file1 file2
4,5c4,5
< This is the fourth line in file
<  This is the fifth line in file
---
> This is the fourth line in filex
> This is the fifth line in filex

要并排查看文件,请使用“-y”标志

输出将显示两个文件之间的差异,每个文件的每一行都并排显示。任何不同的行都将以红色突出显示。

以下是如何使用diff命令比较两个文件“file1”和“file2”的示例:

$ diff -y  file1 file2
This is the first line in file      This is the first line in file
This is the second line in file     This is the second line in file
This is the third line in file      This is the third line in file
This is the fourth line in file     | This is the fourth line in filex
This is the fifth line in file      | This is the fifth line in filex
This is the sixth line in file      This is the sixth line in file

在这个例子中,我们可以看到两个文件的第四行和第五行不同。diff命令以红色突出显示了这些差异。

使用sdiff命令

sdiff命令类似于diff命令,但它将两个文件之间的差异合并到单个输出中。要使用sdiff命令,请输入命令后跟要比较的两个文件的名称,如下所示:

$ sdiff file1 file2

输出将显示两个文件之间的差异,每个文件的每一行都并排显示。任何不同的行都将以红色突出显示,并用符号标记它们来自哪个文件。

以下是如何使用sdiff命令比较两个文件file1和file2的示例:

$ sdiff file1 file
This is the first line in file       This is the first line in file
This is the second line in file      This is the second line in file
This is the third line in file       This is the third line in file
This is the fourth line in file      | This is the fourth line in filex
This is the fifth line in file       | This is the fifth line in filex
This is the sixth line in file       This is the sixth line in file

在这个例子中,我们可以看到第四行和第五行在两个文件中不同。sdiff命令已将这些差异以红色突出显示,并用符号标记它们来自哪个文件。

使用vim文本编辑器

vim文本编辑器是一个流行且功能强大的工具,用于在Linux上处理文件。可以使用“-o”或“-O”标志将其用于并排查看两个文件。要在vim中并排查看两个文件,请输入命令后跟两个文件的名称,如下所示:

$ vim -o file1 file2

这将在单个窗口中打开两个文件,并且文件将并排显示。您可以使用“Ctrl+w”命令在文件之间导航。以下是如何使用vim在单个窗口中并排查看两个文件file1和file2的示例。

$ vim -O file1 file2

这将在单个窗口中打开两个文件,并且文件将并排显示。您可以使用:diffupdate命令查看两个文件之间的差异,该命令将以红色突出显示任何差异。

使用emacs文本编辑器

vim一样,emacs文本编辑器是用于在Linux上处理文件的强大工具。它还可以使用“-nw”标志并排查看两个文件。要在emacs中并排查看两个文件,请输入命令后跟两个文件的名称,如下所示:

$ emacs -nw file1 file2

这将在emacs中单独的窗口中打开两个文件。您可以使用“Ctrl+x”或“.”在窗口之间导航。以下是如何使用emacs并排显示两个文件“file1”和“file2”的示例

$ emacs -nw file1 file2

这将在emacs中单独的窗口中打开两个文件。您可以使用M-x ediff命令查看两个文件之间的差异,这将打开第三个窗口,显示两个文件之间的差异。

结论

在Linux中并排显示文件可以成为比较和分析多个文件的实用工具。sdiff和diff命令以及vim和emacs文本编辑器提供了在终端中并排查看文件的方法。无论您需要比较简单的文本文件还是更复杂的数据,都有一种方法可以在Linux中并排查看文件。

更新于:2023年1月25日

17K+ 次浏览

启动你的职业生涯

完成课程获得认证

开始学习
广告