Help for this page

Select Code to Download


  1. or download this
    use File::Basename 'dirname';
    
    ...
       croak "Can't find $filename" unless -f $filename;
       ...
    }
    
  2. or download this
    sub find_config {
       my $filename = shift;
    ...
    
    my $filename = find_config("acme.conf", @INC, "/also/search/here", "/a
    +nd/here")
       or die "Couldn't find acme.conf!";