Help for this page

Select Code to Download


  1. or download this
    sub file_mode {
      my ($file) = @_;
    ...
              $dummy, $dummy, $dummy, $dummy) = stat($file);
      return $mode;
    }
    
  2. or download this
    sub file_mode {
      -f shift or return -1;
      return (stat(_))[2];
    }