- or download this
return unless (((stat)[2] & S_IWUSR) && ((stat)[2] & S_IWGRP) && ((s
+tat)[2] & S_IWOTH));
- or download this
# Some code
my $mask = S_IWUSR | S_IWGRP | S_IWOTH;
...
return unless $dirStats[2] & $mask == $mask;
# Even more code
- or download this
Possible precedence problem on bitwise & operator at ./ww_files-v4-2
+.pl line 106.