Answers:
与所有事物一样,该解决方案是一个perl脚本:
#!/usr/bin/perl
use File::Find;
my $directory1 = '/tmp/temp1';
my $directory2 = '/tmp/temp2';
find(\&hashfiles, $directory1);
sub hashfiles {
my $file1 = $File::Find::name;
(my $file2 = $file1) =~ s/^$directory1/$directory2/;
my $mode1 = (stat($file1))[2] ;
my $mode2 = (stat($file2))[2] ;
my $uid1 = (stat($file1))[4] ;
my $uid2 = (stat($file2))[4] ;
print "Permissions for $file1 and $file2 are not the same\n" if ( $mode1 != $mode2 );
print "Ownership for $file1 and $file2 are not the same\n" if ( $uid1 != $uid2 );
}
有关更多信息,请访问http://perldoc.perl.org/functions/stat.html和http://perldoc.perl.org/File/Find.html,以获取更多信息,特别是stat
如果要比较其他文件属性的信息。
如果目录2中不存在文件,但目录1中存在文件,则也会输出,因为stat
会有所不同。
查找并统计:
find . -exec stat --format='%n %A %U %G' {} \; | sort > listing
在两个目录中运行该文件,然后比较两个列表文件。
从Perl的邪恶中拯救您...
ls -al
将显示权限,如果它们都在同一个文件夹中,则您将获得以下内容:
drwxr-xr-x 4 root root 4096 nov 28 20:48 temp
drwxr-xr-x 2 lucas 1002 4096 mrt 24 22:33 temp2
第三列是所有者,第四列是组。
printf ("Permissions for %s and %s are not the same (%04o != %04o)\n", $file1, $file2, $mode1 &07777, $mode2 &07777) if ( $mode1 != $mode2);