![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
Re: How to "transfer control" to child process?by John M. Dlugosz (Monsignor) |
on May 23, 2011 at 19:39 UTC ( #906348=note: print w/replies, xml ) | Need Help?? |
Well, the first thing anyone will tell you is
and see if Perl itself starts telling about anything odd or finding any mistakes. I see that you invoke the program with a line containing << !. That changes STDIN to read from something else (I'm not familiar enough with ksh to know if ! has a special meaning or is the name of a file). That stays in effect through all the programs called down through system, so the use of STDIN won't prompt the user but will keep reading from ! (whatever that is). What is the purpose of that? I don't see your main script reading anything from STDIN itself.
In Section
Seekers of Perl Wisdom
|
|