欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

linux 比较两个文件夹diff不同 (diff命令, md5列表)

程序员文章站 2022-06-16 20:34:52
比较文件夹diff,可以直接使用diff命令 [root@~]# diff -urna dir1 dir2   -a treat all files as text...

比较文件夹diff,可以直接使用diff命令

[root@~]# diff -urna dir1 dir2
  -a treat all files as text and compare them line-by-line, even if they do not seem to be text.
  -n, --new-file
    in directory comparison, if a file is found in only one directory, treat it as present but empty in the other directory.
  -r when comparing directories, recursively compare any subdirectories found.
  -u use the unified output format.

比较文件夹diff,也可以比较文件md5列表。下面命令可以获取文件夹中文件md5列表

find /home/ -type f -not \( -name '.*' \) -exec md5sum {} \;

说明:

          (1) /home/文件目录

     (2) -type f 文件类型为普通文件

     (3) -not \( -name '.*' \)  过滤掉隐藏文件。可以过滤掉不需要考虑的文件

         (4) -exec md5sum {} \;  对每个文件执行md5sum命令

 用tar命令压缩后,比较文件的md5是不行的。tar压缩会带上文件的时间

linux 比较两个文件夹diff不同 (diff命令, md5列表)

总结

以上所述是小编给大家介绍的linux 比较两个文件夹diff不同 (diff命令, md5列表),希望对大家有所帮助