Help for this page

Select Code to Download


  1. or download this
    while(<PERMSFILE>) {
        next if /Everyone\s+R X/;
    ...
        next if /\s+o\s+/;
        print SHORTPERMS;
    }
    
  2. or download this
    while(<PERMSFILE>) {
        if( $_ !~ /Everyone\s+R X/ &&
    ...
                print SHORTPERMS $_;
        }
    }