Term::ProgressBar::Simple

Simpler progress bars
Download

Term::ProgressBar::Simple Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Edmund von der Burg
  • Publisher web site:
  • http://search.cpan.org/~evdb/

Term::ProgressBar::Simple Tags


Term::ProgressBar::Simple Description

Simpler progress bars Progress bars are handy - they tell you how much work has been done, how much is left to do and estimate how long it will take.But they can be fiddly!Term::ProgressBar::Simple is a Perl module that does the right thing in almost all cases in a really convenient way.SYNOPSIS # create some things to loop over my @things = (...); my $number_of_things = scalar @things; # create the progress bar object my $progress = Term::ProgressBar::Simple->new( $number_of_things ); # loop foreach my $thing (@things) { # do some work $thing->do_something(); # increment the progress bar object to tell it a step has been taken. $progress++; } # See also use of '$progress += $number' later in pod Requirements: · Perl


Term::ProgressBar::Simple Related Software