g****n 发帖数: 3313 | 1 如何对linux文件的内容进行比对?
我的 两个文件甲中,有不同的文件,我现在向把 他们两个中的文件名相同的文件进行
比对,这样的相同名的文件有不少,我只向把内容不同的文件名字列出来。
I am using shell script programming. thanks! |
a*****i 发帖数: 4391 | |
g****n 发帖数: 3313 | 3
I have to use sum.....
and there are alot of same-named-file, cant compare them one by one, so that
is the reason I have to write a script to compare them ,and output a diff
list.
【在 a*****i 的大作中提到】 : man diff
|
m******t 发帖数: 2416 | 4
diff <(cd dir1; find dir1) <(cd dir2; find dir2)
or if you use vim, there is a dirdiff plugin that does exactly this.
【在 g****n 的大作中提到】 : 如何对linux文件的内容进行比对? : 我的 两个文件甲中,有不同的文件,我现在向把 他们两个中的文件名相同的文件进行 : 比对,这样的相同名的文件有不少,我只向把内容不同的文件名字列出来。 : I am using shell script programming. thanks!
|
j**x 发帖数: 446 | 5 假设你有两个文件夹abc和xyz,用以下命令
diff -r -q ./abc ./xyz |
g****s 发帖数: 181 | |