in reply to Processes clobbering each other
First off, try:
use strict; use warnings 'all';
Second, you might have a typo in your code at the second regexp condition. Should that read:
elsif ($_ =~ m/^Hits/) { push (@hits, $_) ; }
instead of:
elsif ($_ =~ m/^Hits) { push (@hits, $_) ; }
?
Finally, what does makemore.pl print out ? Is it working correctly ? Does it work correctly when called multiple times concurrently ?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Processes clobbering each other
by mcogan1966 (Monk) on Nov 24, 2003 at 22:01 UTC | |
by holo (Monk) on Nov 24, 2003 at 22:38 UTC | |
by mcogan1966 (Monk) on Nov 25, 2003 at 13:50 UTC |