Help for this page

Select Code to Download


  1. or download this
    my $SETS = Config::Auto::parse( '/path/file.conf' );
    print Dumper( $SETS );
    ...
       'entryA' => { anonymous hash }
       'entryB' => { anonymous hash }
       };
    
  2. or download this
    my @files = </path/to/files/*>;
    my $SETS = Config::Auto::parse( $_ ) foreach @files;