zachzippo has asked for the wisdom of the Perl Monks concerning the following question:
In running the above example without the -i I get two rows of stars, with the -i it waits for a response and then gives two rows of stars. It's almost like I need a way to tell PERL to flush the STDOUT buffers before quering on STDIN, I think this is possible but don't know how. I invoke the connection as "psexec \\{host} cmd" to get a command shell to run the programs. I'm running AS 5.8.3-811 under 2003 server std ed. I appreciate your meditations...#! perl use strict; use warnings; my $commit; print "***********************\n"; $commit = <>; print "***********************\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: psexec and PERL
by crashtest (Curate) on Feb 16, 2005 at 06:26 UTC | |
by Anonymous Monk on Feb 17, 2005 at 04:21 UTC |