Help for this page

Select Code to Download


  1. or download this
    while (my @CFG = <CFGFILE>)
    {
    ...
       }
       print ...
    }
    
  2. or download this
    my @CFG = <CFGFILE>;
    
    ...
    }
    
    print ...
    
  3. or download this
    while (my @CFG = <CFGFILE>)
    {
    ...
       }
       print ...
    }
    
  4. or download this
    while (<CFGFILE>)
    {
       ...
       print ...
    }