Help for this page

Select Code to Download


  1. or download this
    TOKEN1=value1
    TOKEN2=value2
    ...
    
  2. or download this
    while(<>) {
      if (/^([A-Z_]+)=(.*)/) {
    ...
         $conf{$1}=$2;
      }
    }
    
  3. or download this
    %conf=(TOKEN1 => "value1",
           TOKEN2 => "value2")