in reply to Re^2: Runing "regular" code with threaded perl
in thread Runing "regular" code with threaded perl
Not quick, but dirty :)bjmsys("xspec - ${tmp}.xcm", $v); my $tries = 10; until ( open(DAT, "${tmp}xsfit.dat") || --$tries <= 0 ) { sleep 1; } die ("Could not open file: $!") if ($tries <= 0); my @kT=<DAT>; close DAT;
|
|---|