Help for this page

Select Code to Download


  1. or download this
    my $confgiFile = '/path/to/configFile';
    
    open ( CONFIG, ">$configFile" ) or die "FATAL :: failure configuring -
    + $!\n\n";
    ...
    print CONFIG $config; # $config is populated much earlier
    
    close(CONFIG);
    
  2. or download this
    open ( OTHERCONFIG, ">/path/to/otherconfigFile" ) or die "FATAL :: fai
    +lure configuring - $!\n\n";
    
    print OTHERCONFIG $otherConfig;
    
    close(OTHERCONFIG);