On Tue, 22 Aug 2000, martin langhoff wrote:

> hi list,
> 
>       while doing a silly thing (building a set of HTML files with info from
> a DB file), I found that while the apache server was being crawled by
> lwp-rget, a lots of zombie shells were being spawned and killed. 
 
> sh -c /bin/csh -cf 'set nonomatch; glob /table' 2>/de

it looks like one of your html tags is astray, which Perl interprets as
a <> glob, e.g.

% strace -o strace.out -f /usr/bin/perl -e '</table>'
% grep glob strace.out 
10627 execve("/bin/csh", ["/bin/csh", "-cf", "set nonomatch; glob /table"], [/* 56 
vars */]) = 0

i don't see any in your script that would trigger that, but you might want
to double check where all of your </table> tags are.

Reply via email to