Thanks, David!
-Brian
Thus spake Dann Frazier ([EMAIL PROTECTED]):
> On Tue, Dec 23, 2003 at 10:33:08AM -0800, Lombard, David N wrote:
> > In prepareclient, we find
> >
> > my $cmd="for i in 1 2; do echo -n .; sleep 1s; done";
> > system("$cmd");
> >
> > Is there any reason this i
On Tue, Dec 23, 2003 at 10:33:08AM -0800, Lombard, David N wrote:
> In prepareclient, we find
>
> my $cmd="for i in 1 2; do echo -n .; sleep 1s; done";
> system("$cmd");
>
> Is there any reason this isn't done as
>
> $|++;
> foreach (1..2) {
>sleep 1;
>
In prepareclient, we find
my $cmd="for i in 1 2; do echo -n .; sleep 1s; done";
system("$cmd");
Is there any reason this isn't done as
$|++;
foreach (1..2) {
sleep 1;
print ".";
}
print "\n";
--
David N. Lombard
My comments are my opin