in reply to Re: Re: Test to see if directories are the samein thread Test to see if directories are the same
sub all_same_file { my @desc = map {my @s = stat; "@s[0,1]"} @_; @_ == grep {$desc[0] eq $_} @desc; } [download]