in reply to Parallel::ForkManager run_on_finish Canot get Exit Code of Child process

Instead of:
`curl -o /dev/null -m 222 \"$Link\" 2>> $logFile`
Try:
open(STDERR, ">>", $logfile) or die "Failed to open $logfile: $!"; exec curl => -o => "/dev/null", -m => 222, $Link; die "Could not exec curl: $!";
Now the run_on_finish() should capture the exit status of curl (or some other failure like opening the log file or not being able to run curl).