http://qs321.pair.com?node_id=1068345


in reply to Early termination of STDIN with combination of ssh and sleep

Does it work if you change the exec to

die "Unable to exec\n" unless(exec("/usr/bin/ssh localhost /bi +n/sleep 10 </dev/null"));

or

die "Unable to exec\n" unless(exec("/usr/bin/ssh -n localhost +/bin/sleep 10"));

IIRC ssh may be pre-reading STDIN and then discarding the contents when it's not actually needed. Redirecting stdin for the ssh command makes sure there won't be any interference with your main program.

Replies are listed 'Best First'.
Re^2: Early termination of STDIN with combination of ssh and sleep
by orleans704 (Initiate) on Dec 25, 2013 at 12:34 UTC
    Wow, that did the trick. Thanks!