How to Install and Uninstall perl-Parse-ANSIColor-Tiny Package on openSuSE Tumbleweed

Last updated: November 07,2024

1. Install "perl-Parse-ANSIColor-Tiny" package

In this section, we are going to explain the necessary steps to install perl-Parse-ANSIColor-Tiny on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Parse-ANSIColor-Tiny

2. Uninstall "perl-Parse-ANSIColor-Tiny" package

This guide covers the steps necessary to uninstall perl-Parse-ANSIColor-Tiny on openSuSE Tumbleweed:

$ sudo zypper remove perl-Parse-ANSIColor-Tiny

3. Information about the perl-Parse-ANSIColor-Tiny package on openSuSE Tumbleweed

Information for package perl-Parse-ANSIColor-Tiny:
--------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Parse-ANSIColor-Tiny
Version : 0.700-1.5
Arch : noarch
Vendor : openSUSE
Installed Size : 39.3 KiB
Installed : No
Status : not installed
Source package : perl-Parse-ANSIColor-Tiny-0.700-1.5.src
Upstream URL : https://metacpan.org/release/Parse-ANSIColor-Tiny
Summary : Determine attributes of ANSI-Colored string
Description :
Parse a string colored with ANSI escape sequences into a structure suitable
for reformatting (into HTML, for example).
The output of terminal commands can be marked up with colors and formatting
that in some instances you'd like to preserve.
This module is essentially the inverse of Term::ANSIColor. The array refs
returned from parse can be passed back in to 'Term::ANSIColor::colored'.
The strings may not match exactly due to different ways the attributes can
be specified, but the end result should be colored the same.
This is a '::Tiny' module... it attempts to be correct for most cases with
a small amount of code. It may not be 100% correct, especially in complex
cases. It only handles the 'm' escape sequence ('\033[0m') which produces
colors and simple attributes (bold, underline) (like what can be produced
with Term::ANSIColor). Other escape sequences are removed by default but
you can disable this by passing 'remove_escapes => 0' to the constructor.
If you do find bugs please submit tickets (with patches, if possible).