Linux比较两个文件夹

Linux比较两个文件夹工具: 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.

 


版权声明:本文为yang5915原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。