Help for this page

Select Code to Download


  1. or download this
    use v6;
    
    ...
        when any(<http apache>) { authenticate :web; dostuff } 
        default                 { authenticate :local; dostuff }
    }
    
  2. or download this
    use v6;
    
    dir '/some/directory', test => /\.txt$/;           # a regex
    dir '/some/directory', test => none('.', '..');    # a junctionČ
    dir '/some/directory', test => &validate_filename; # a coderef