Mahdi A Sbeih wrote:
> Hi all,

Hello,

> I am porting a shell script written in korn shell to perl, and i want to
> see what is the best way to port the "nohup" shell command in perl,
> anyone knows?

Basically the nohup program ignores the HUP signal so:

$SIG{ HUP } = 'IGNORE';

is probably all you need.

http://www.openbsd.org/cgi-bin/man.cgi?query=nohup&sektion=1&apropos=0&manpath=OpenBSD+Current



John
-- 
use Perl;
program
fulfillment

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to