- or download this
use warnings;
use strict;
...
print "Dir: $dir, Perm: $perm\n";
}
- or download this
Dir: /usr/tmp, Perm: -w
Dir: /usr/tmp, Perm: -r
- or download this
use warnings;
use strict;
...
print "Can $perm $dir\n";
}
}
- or download this
Can -w .
Can -r .