in reply to Re^3: 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

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.