Help for this page

Select Code to Download


  1. or download this
    my( $uid, $gid ) = (stat $file)[4,5];
    ++$user{$uid};
    ++$group{$gid};
    
  2. or download this
    sub { ++$used{shift(); ++$group{shift()}; }->((stat $file)[4,5]);