Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想编写一个区分两个文件的shell脚本,并将结果转储到另一个文件中。
我发现sdiff它比仅仅更直观diff。但是,sdiff不会打印出差异所在的行号。我也尝试过vimdiff,它显示了行号,但我不确定如何将结果从 shell 脚本转储到文件中。
sdiff
diff
vimdiff
到目前为止,这就是我正在使用的:
sdiff -s file1 file2
有没有办法获得行号的并排差异?
有一个非常好的工具:meld
meld
安装:sudo apt-get install meld
sudo apt-get install meld
您可以检查两个或多个文件之间的差异,也可以检查目录之间的差异。