in reply to Re: open-coding a system() operation
in thread open-coding a system() operation

I ignore the signals because Perl does. Perl emulates the system(3) call from C, which also ignores those signals. That's so you can press ^C while system is running a vi for you, and stop the vi without killing the Perl that is also running.

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

  • Comment on •Re: Re: open-coding a system() operation