in reply to How to execute Net::OpenSSH remote command requiring input

You can feed data to the remote process using the stdin_data option as follows:
$ssh = Net::OpenSSH->new($hostname, user => $username, master_stderr_d +iscard => 1} $command = "cd /usr/local/bin; interactive_program.pl"; @out = $ssh->capture({stdin_data => "input1\ninput2\ninput3\n"}, $comm +and);
Though, I don't think that will solve your problem... the Expect approach seems more promising!

Replies are listed 'Best First'.
Re^2: How to execute Net::OpenSSH remote command requiring input
by avonnieda (Novice) on Oct 26, 2009 at 15:55 UTC

    Ahh, I see, didn't know about that option either. Thanks very much for the reply salva! The expect method is working great, the sample was very helpful.

    Best regards,
    -Adam