Answers:
从差异手册页:
-q
仅报告文件是否不同,而不报告差异的详细信息。
-r
比较目录时,以递归方式比较找到的所有子目录。
示例命令:
diff -qr dir1 dir2
输出示例(取决于语言环境):
$ ls dir1 dir2
dir1:
same-file different only-1
dir2:
same-file different only-2
$ diff -qr dir1 dir2
Files dir1/different and dir2/different differ
Only in dir1: only-1
Only in dir2: only-2
-x PATTERN
在命令中包括以排除某些子目录。例如,diff -qr repo1 repo2 -x ".git"
将比较两个目录,但将排除其中带有“ .git”的文件路径。
您也可以使用rsync
rsync -rv --size-only --dry-run /my/source/ /my/dest/ > diff.out
--size-only
将丢失大小相同但内容不同的文件,例如old / version.txt “ 29a” new / version.txt “ 29b”。改用:rsync -ric --dry-run old/ new/
“-i”参数允许直接通过rsync -ric --dry-run old/ new/ | cut -d" " -f 2
如果要获取仅在一个目录中而不在其子目录中且仅在文件名中的文件列表:
diff -q /dir1 /dir2 | grep /dir1 | grep -E "^Only in*" | sed -n 's/[^:]*: //p'
如果要递归列出所有文件和目录及其完整路径,请执行以下操作:
diff -rq /dir1 /dir2 | grep -E "^Only in /dir1*" | sed -n 's/://p' | awk '{print $3"/"$4}'
这样,您可以将不同的命令应用于所有文件。
例如,我可以删除dir1而非dir2中的所有文件和目录:
diff -rq /dir1 /dir2 | grep -E "^Only in /dir1*" | sed -n 's/://p' | awk '{print $3"/"$4}' xargs -I {} rm -r {}
在我的Linux系统上,仅获取文件名
diff -q /dir1 /dir2|cut -f2 -d' '
audit-0.0.234/audit-data-warehouse-0.0.234/ audit-0.0.235/audit-data-warehouse-0.0.235/
diff -qrN /dir1 /dir2 | cut -f2 -d' '
对我来说很好!
运行方法diff -qr old/ new/
有一个主要缺点:它可能会丢失新创建的目录中的文件。例如,在下面的示例中,文件data/pages/playground/playground.txt
不在diff -qr old/ new/
目录的输出中,而目录不在 目录data/pages/playground/
中(在浏览器中搜索park.txt以快速进行比较)。我还在Unix&Linux Stack Exchange上发布了以下解决方案,但我也将其复制到这里:
要以编程方式创建新文件或修改文件的列表,我能想到的最佳解决方案是使用rsync,sort和 uniq:
(rsync -rcn --out-format="%n" old/ new/ && rsync -rcn --out-format="%n" new/ old/) | sort | uniq
让我用这个例子来解释:我们想比较两个dokuwiki版本,看看哪些文件被更改,哪些文件是新创建的。
我们使用wget提取焦油并将其提取到目录old/
和new/
:
wget http://download.dokuwiki.org/src/dokuwiki/dokuwiki-2014-09-29d.tgz
wget http://download.dokuwiki.org/src/dokuwiki/dokuwiki-2014-09-29.tgz
mkdir old && tar xzf dokuwiki-2014-09-29.tgz -C old --strip-components=1
mkdir new && tar xzf dokuwiki-2014-09-29d.tgz -C new --strip-components=1
以一种方式运行rsync可能会丢失新创建的文件,因为rsync和diff的比较如下所示:
rsync -rcn --out-format="%n" old/ new/
产生以下输出:
VERSION
doku.php
conf/mime.conf
inc/auth.php
inc/lang/no/lang.php
lib/plugins/acl/remote.php
lib/plugins/authplain/auth.php
lib/plugins/usermanager/admin.php
仅在一个方向上运行rsync会丢失新创建的文件,而在另一方向上运行rsync则会丢失已删除的文件,请比较diff的输出:
diff -qr old/ new/
产生以下输出:
Files old/VERSION and new/VERSION differ
Files old/conf/mime.conf and new/conf/mime.conf differ
Only in new/data/pages: playground
Files old/doku.php and new/doku.php differ
Files old/inc/auth.php and new/inc/auth.php differ
Files old/inc/lang/no/lang.php and new/inc/lang/no/lang.php differ
Files old/lib/plugins/acl/remote.php and new/lib/plugins/acl/remote.php differ
Files old/lib/plugins/authplain/auth.php and new/lib/plugins/authplain/auth.php differ
Files old/lib/plugins/usermanager/admin.php and new/lib/plugins/usermanager/admin.php differ
两种方式都运行rsync并对输出进行排序以除去重复项,这表明该目录data/pages/playground/
和文件data/pages/playground/playground.txt
最初是丢失的:
(rsync -rcn --out-format="%n" old/ new/ && rsync -rcn --out-format="%n" new/ old/) | sort | uniq
产生以下输出:
VERSION
conf/mime.conf
data/pages/playground/
data/pages/playground/playground.txt
doku.php
inc/auth.php
inc/lang/no/lang.php
lib/plugins/acl/remote.php
lib/plugins/authplain/auth.php
lib/plugins/usermanager/admin.php
rsync
使用以下参数运行:
-r
“递归到目录”, -c
还比较相同大小的文件,只比较“根据校验和跳过,而不是基于调制时间和大小”, -n
“不进行任何更改即可进行试运行”,并且--out-format="%n"
“使用指定的格式输出更新”,此处仅文件名是“%n”rsync
双向的输出(文件列表)使用进行合并和排序sort
,然后通过使用删除所有重复项来压缩此排序列表。uniq
diff new/ old/
)来查看删除了哪些目录?
diff -qr new/ old/
在带有dokuwiki tar的上述示例上运行,将产生与-相同的输出,diff -qr old/ new/
即,您看到目录是新目录/缺少目录,而不是其中的文件
diff
-CentOS 7中的手册页描述-q
为“仅在文件不同时才报告”,这比您编写的内容不清楚。