Kumara - predecessor to Koha
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
408 B

#!/usr/bin/perl
$done = "returns";
my $i=0;
while ($done eq "returns") {
my @args=('./doreturns.pl',@ARGV);
eval{system(@args)};
$exit_value = $? >> 8;
if ($exit_value){
$done=$exit_value;
}
}