I'm trying to make a simple text-based progress bar in perl, in order to display the progress while sending an email or doing a task.

Any pointers ?! Thanks

link|improve this question
feedback

3 Answers

Damian Conway's Smart::Comments module includes text progress bars.

link|improve this answer
1  
Smart::Comments can be enabled or disabled at runtime too: module – JRFerguson Nov 7 '11 at 13:30
feedback

I’m quite fond of Time::Progress for terminal stuff. Simplistic example–

use warnings;
use strict;
use Time::Progress;
use Time::HiRes "usleep"; # for demo.

my $timer = Time::Progress->new();
my $some_total_to_reach = 10_000;
$timer->attr( min => 1, max => $some_total_to_reach );

my $count = 1;
while ( $some_total_to_reach-- )
{
    print $timer->report("Doing stuff: %40b%p%L%E\r", $count++);
    usleep int(rand(1_000));
}

print "\nDone!\n";
link|improve this answer
the problem is i need to feed the progress bar while i'm sending a mail. When i finish sending the progress bar must finish too ! – FGraviton Nov 7 '11 at 3:30
1  
How are you sending the mail? Are you using Net::SMTP with datasend? Are you sending one line at a time? Do you know how many lines you are sending to start with? – Bill Ruppert Nov 7 '11 at 4:45
yes. i'm trying to send a template. any pointers ?! – FGraviton Nov 8 '11 at 0:33
feedback
up vote 1 down vote accepted

I used Term::ProgressBar module, and after each done operation i call update() method. That's all. Thank you all, especially Bill Ruppert ;)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.