Re: RE: [Perl-unix-users] Odd problems from shell commands run via RP C service

2004-08-20 Thread David Greenberg
Is it possible that the process is being killed externally. If that happens, the output using backticks might be lost while some or all of the output will still be written to a file. Maybe it's something along these lines? -David - Original Message - From: vega, james <[EMAIL PROTECTED]

Re: [Perl-unix-users] V100/Blade2500 Vs Ultra10

2004-08-20 Thread David Greenberg
It all depends on exactly what the script is doing and the exact specs of the V100 or Blade2500 that you're getting, but I have worked on both and would guess you're probably looking at drastic improvement. When I upgraded from an Ultra10 to a Blade1500, I everything was overwhelmingly faster (not

Re: [Perl-unix-users] parsing multiple arrays

2004-08-17 Thread David Greenberg
It's not recursive, but it should do the job... my %ids = (); foreach (@arr1) { $ids{$_}++;} ... foreach (@arr8) { $ids{$_}++;} foreach (keys(%ids)) { print $_ if $ids{$_} == 8; } This assumes that each array contains only unique ids. -David On Tue, 17 Aug 2004 08:53:21 -0500, Mehta, Perdeep <[