How to Install and Uninstall perl-CGI-Application Package on openSuSE Tumbleweed

Last updated: May 21,2024

1. Install "perl-CGI-Application" package

This is a short guide on how to install perl-CGI-Application on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-CGI-Application

2. Uninstall "perl-CGI-Application" package

Please follow the guidelines below to uninstall perl-CGI-Application on openSuSE Tumbleweed:

$ sudo zypper remove perl-CGI-Application

3. Information about the perl-CGI-Application package on openSuSE Tumbleweed

Information for package perl-CGI-Application:
---------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-CGI-Application
Version : 4.61-1.24
Arch : noarch
Vendor : openSUSE
Installed Size : 174.3 KiB
Installed : No
Status : not installed
Source package : perl-CGI-Application-4.61-1.24.src
Upstream URL : http://search.cpan.org/dist/CGI-Application/
Summary : Framework for building reusable web-applications
Description :
It is intended that your Application Module will be implemented as a
sub-class of CGI::Application. This is done simply as follows:
package My::App;
use base 'CGI::Application';
*Notation and Conventions*
For the purpose of this document, we will refer to the following
conventions:
WebApp.pm The Perl module which implements your Application Module class.
WebApp Your Application Module class; a sub-class of CGI::Application.
webapp.cgi The Instance Script which implements your Application Module.
$webapp An instance (object) of your Application Module class.
$c Same as $webapp, used in instance methods to pass around the
current object. (Sometimes referred as "$self" in other code)