Hello,
I want to start a program from my perlscript and put the result in a database. The following code is run in a loop, changing param1 and param2:
my @args=("program.exe", "--param1", "1", "--param2", "2");
system( @args );
my $exitcode=$?/256;
It works fine, but sometimes...