hi
$cmd = "ci -u file,v";
open3 (a,b,c, $cmd);
-- here while unix is executing $cmd it prompts user to enter some message
but using with open3 its not asking -- looks like "ci" will ask if there is no tty or something.
I wanted to know if we can still let the underlying command perform its IO as per its doing without open3 (say with "system or exec ($cmd) or `$cmd`"
Thanks