in reply to Re: Using File::Temp Names
in thread Using File::Temp Names
print "\n\n\n"; print "\n".getTempParamFileName()."\n"; open (AAA, "<".getTempParamFileName()); while(my $xxx=<AAA>){ print $xxx; } close AAA; ######### my @pmcmd=("$binDir/runWorkflow.pl", "-c", "$cluster", "-n", "$node", "-f", getWorkFlowFolder($feeder), "-p", getTempParamFileName(), + "-w", getWorkFlow($feeder)); $rc = PB::FileUtils::execute(\@pmcmd, $log); ######### print "\n\n\n"; print "\n".getTempParamFileName()."\n"; open (AAA, "<".getTempParamFileName()); while(my $xxx=<AAA>){ print $xxx; } close AAA;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Using File::Temp Names
by Sidhekin (Priest) on Aug 01, 2006 at 03:54 UTC | |
by novicepl (Initiate) on Aug 01, 2006 at 17:36 UTC | |
by Sidhekin (Priest) on Aug 01, 2006 at 18:11 UTC |