in reply to Re: Running Parallel Perl Script on Linux Cluster
in thread Running Parallel Perl Script on Linux Cluster

Don't you mean:
END { open my $fh, ">", "done$param" or die $! }
instead of END { system("touch done$param"); }; ?