How to Install and Uninstall perl-Term-ProgressBar Package on openSuSE Tumbleweed

Last updated: May 19,2024

1. Install "perl-Term-ProgressBar" package

This tutorial shows how to install perl-Term-ProgressBar on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Term-ProgressBar

2. Uninstall "perl-Term-ProgressBar" package

This guide let you learn how to uninstall perl-Term-ProgressBar on openSuSE Tumbleweed:

$ sudo zypper remove perl-Term-ProgressBar

3. Information about the perl-Term-ProgressBar package on openSuSE Tumbleweed

Information for package perl-Term-ProgressBar:
----------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Term-ProgressBar
Version : 2.23-1.5
Arch : noarch
Vendor : openSUSE
Installed Size : 49.4 KiB
Installed : No
Status : not installed
Source package : perl-Term-ProgressBar-2.23-1.5.src
Upstream URL : https://metacpan.org/release/Term-ProgressBar
Summary : Provide a progress meter on a standard terminal
Description :
Term::ProgressBar provides a simple progress bar on the terminal, to let
the user know that something is happening, roughly how much stuff has been
done, and maybe an estimate at how long remains.
A typical use sets up the progress bar with a number of items to do, and
then calls update to update the bar whenever an item is processed.
Often, this would involve updating the progress bar many times with no
user-visible change. To avoid unnecessary work, the update method returns a
value, being the update value at which the user will next see a change. By
only calling update when the current value exceeds the next update value,
the call overhead is reduced.
Remember to call the '$progress->update($max_value)' when the job is done
to get a nice 100% done bar.
A progress bar by default is simple; it just goes from left-to-right,
filling the bar with '=' characters. These are called *major* characters.
For long-running jobs, this may be too slow, so two additional features are
available: a linear completion time estimator, and/or a *minor* character:
this is a character that _moves_ from left-to-right on the progress bar (it
does not fill it as the major character does), traversing once for each
major-character added. This exponentially increases the granularity of the
bar for the same width.