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 opinions, not those of Intel Corporation.


-------------------------------------------------------
This SF.net email is sponsored by: IBM Linux Tutorials.
Become an expert in LINUX or just sharpen your skills.  Sign up for IBM's
Free Linux Tutorials.  Learn everything from the bash shell to sys admin.
Click now! http://ads.osdn.com/?ad_id78&alloc_id371&op=click
_______________________________________________
Sisuite-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/sisuite-devel

Reply via email to