标签: linux
我想在Linux下使用:
diff -r ./A ./B
但我想忽略一些子目录名称,例如一个名为“svn”的子目录。
我如何在Linux下完成?
答案 0 :(得分:12)
你可以写:
diff -r --exclude=svn ./A ./B