How to Install and Uninstall perl-Text-TabularDisplay Package on openSuSE Tumbleweed

Last updated: October 06,2024

1. Install "perl-Text-TabularDisplay" package

This guide covers the steps necessary to install perl-Text-TabularDisplay on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Text-TabularDisplay

2. Uninstall "perl-Text-TabularDisplay" package

Here is a brief guide to show you how to uninstall perl-Text-TabularDisplay on openSuSE Tumbleweed:

$ sudo zypper remove perl-Text-TabularDisplay

3. Information about the perl-Text-TabularDisplay package on openSuSE Tumbleweed

Information for package perl-Text-TabularDisplay:
-------------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Text-TabularDisplay
Version : 1.38-3.29
Arch : noarch
Vendor : openSUSE
Installed Size : 49.3 KiB
Installed : No
Status : not installed
Source package : perl-Text-TabularDisplay-1.38-3.29.src
Upstream URL : http://search.cpan.org/dist/Text-TabularDisplay/
Summary : Display text in formatted table output
Description :
Text::TabularDisplay simplifies displaying textual data in a table. The
output is identical to the columnar display of query results in the mysql
text monitor. For example, this data:
1, "Tom Jones", "(666) 555-1212"
2, "Barnaby Jones", "(666) 555-1213"
3, "Bridget Jones", "(666) 555-1214"
Used like so:
my $t = Text::TabularDisplay->new(qw(id name phone));
$t->add(1, "Tom Jones", "(666) 555-1212");
$t->add(2, "Barnaby Jones", "(666) 555-1213");
$t->add(3, "Bridget Jones", "(666) 555-1214");
print $t->render;
Produces:
+----+---------------+----------------+
| id | name | phone |
+----+---------------+----------------+
| 1 | Tom Jones | (666) 555-1212 |
| 2 | Barnaby Jones | (666) 555-1213 |
| 3 | Bridget Jones | (666) 555-1214 |
+----+---------------+----------------+