Help for this page

Select Code to Download


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