use strict;
use File::Find;
my $dir = '/webdir/pathhere';
find(\&ReadPerm, $dir);
sub ReadPerm {
if (! -w $_) {
print "$File::Find::name\n";
}
}
In reply to Re: Checking permissions on server
by wirrwarr
in thread Checking permissions on server
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |