Help for this page

Select Code to Download


  1. or download this
    my %config;
    m[^([^#][^=]+)=(.*)$] and $config{ $1 } = $2 while <DATA>;
    
  2. or download this
    my %config = map { /^([^#][^=]+)=(.*)$/ } <DATA>;