Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
share
/
doc
/
perl-Term-ProgressBar-Quiet
Upload
4 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
CHANGES
114 B
-rw-r--r--
2007-12-11 16:05:14
Edit
Del
README
985 B
-rw-r--r--
2007-12-11 16:04:33
Edit
Del
Editing: README
(985 B)
Path: /usr/share/doc/perl-Term-ProgressBar-Quiet/README
Back
NAME Term::ProgressBar::Quiet - Provide a progress meter if run interactively SYNOPSIS use Term::ProgressBar::Quiet; my @todo = ( 'x' x 10 ); my $progress = Term::ProgressBar::Quiet->new( { name => 'Todo', count => scalar(@todo), ETA => 'linear' } ); my $i = 0; foreach my $todo (@todo) { # do something with $todo $progress->update( ++$i ); } $progress->message('All done'); DESCRIPTION Term::ProgressBar is a wonderful module for showing progress bars on the terminal. This module acts very much like that module when it is run interactively. However, when it is not run interactively (for example, as a cron job) then it does not show the progress bar. AUTHOR Leon Brocard, acme@astray.com COPYRIGHT Copyright (c) 2007 Leon Brocard. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.