Help for this page

Select Code to Download


  1. or download this
    [Section1]
    param1=value1
    ...
    [Section3]
    param1=value1
    param2=value2
    
  2. or download this
    use Config::Simple;
    
    ...
    
        }
    }
    
  3. or download this
    section : Section1
    Section1.param1 : value1
    ...
    Section2.param2 : value2
    Section3.param1 : value1
    Section3.param2 : value2
    
  4. or download this
    foreach my $secname (sort @sections) 
    {
    ...
    
        }
    }
    
  5. or download this
    section : Section1
    Section1.param1 : value1
    ...
    section : Section3
    Section3.param1 : value1
    Section3.param2 : value2