Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    
        print "Dir: $dir, Perm: $perm\n";
    }
    
  2. or download this
    Dir: /usr/tmp, Perm: -w
    Dir: /usr/tmp, Perm: -r
    
  3. or download this
    use warnings;
    use strict;
    ...
            print "Can $perm $dir\n";
        }
    }
    
  4. or download this
    Can -w .
    Can -r .