in reply to Re^2: How to avoid to launch a unix shell script in a perl script
in thread How to avoid to launch a unix shell script in a perl script

fork || exec("cmd_proc_shell");

Replies are listed 'Best First'.
Re^4: How to avoid to launch a unix shell script in a perl script
by ikegami (Patriarch) on May 06, 2008 at 12:07 UTC
    That would be fork || exec('cmd_proc_shell', 'enter 0,1,0');, and you'll need to call waitpid or set $SIG{CHLD} = 'IGNORE'; at least.
Re^4: How to avoid to launch a unix shell script in a perl script
by bertigo (Novice) on May 06, 2008 at 15:12 UTC
    Thanks a lot That is the answer i expected.