I try to avoid to use this line in a perl script :
system('nohup ./enter.sh &');
On the following lines, the perl script check the log file created by enter.sh script:
cmd_proc_shell "enter 0,1,0"
In interactive mode the cmd_proc_shell command only finish with a control-C.
I have tried to use these two possibilities
1- open (F,"cmd_proc_shell \"enter 0,1,0\""
2- system "cmd_proc_shell","\"enter","0,1,0","\""
but it doesn't work.
Thans for any reply