回答:
diffのmanページから:
-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"
2つのディレクトリを比較しますが、「。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
1つのディレクトリのみにあり、サブディレクトリではなくファイル名のみのファイルのリストを取得する場合:
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/
は、1つの大きな欠点があります。新しく作成されたディレクトリ内のファイルを見逃す可能性があります。たとえば、以下の例では、ファイルdata/pages/playground/playground.txt
はの出力に含まれていません diff -qr old/ new/
が、ディレクトリdata/pages/playground/
は(ブラウザでplayground.txtを検索してすばやく比較できます)。また、次のソリューションをUnix&Linux Stack Exchangeに投稿しましたが、ここにもコピーします。
プログラムで新しいファイルまたは変更されたファイルのリストを作成するには、rsync、sort、uniqを使用するのが最善の方法です。
(rsync -rcn --out-format="%n" old/ new/ && rsync -rcn --out-format="%n" new/ old/) | sort | uniq
この例で説明しましょう。2つの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とdiffの比較がここに示すように、rsyncを一方向で実行すると、新しく作成されたファイルを見逃す可能性があります。
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を実行すると、新しく作成されたファイルが失われ、逆に、削除されたファイルが失われます。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
同じサイズのファイルのみを比較し、「mod-timeとsizeではなく、チェックサムに基づいてスキップする」 -n
「変更を加えずに試運転を行う」、および--out-format="%n"
「指定されたFORMATを使用して更新を出力する」。これは、ここではファイル名のみの「%n」ですの出力(ファイルのリスト)はrsync
、を使用して結合およびソートsort
されます。次に、このソートされたリストは、uniq
diff new/ old/
)に実行して、削除されたディレクトリを確認できませんか?
diff -qr new/ old/
上記の例でdokuwiki tarを使用して実行すると、同じ出力が生成されdiff -qr old/ new/
ます。つまり、ディレクトリは新規/欠落しているが、その中のファイルはないことが
diff
-CentOS 7のmanページでは-q
、「ファイルが異なる場合にのみレポートする」と記述されていますが、これはあなたが書いたものほど明確ではありません。