How to Install and Uninstall perl-Getopt-GUI-Long.noarch Package on Fedora 35

Last updated: July 03,2024

1. Install "perl-Getopt-GUI-Long.noarch" package

In this section, we are going to explain the necessary steps to install perl-Getopt-GUI-Long.noarch on Fedora 35

$ sudo dnf update $ sudo dnf install perl-Getopt-GUI-Long.noarch

2. Uninstall "perl-Getopt-GUI-Long.noarch" package

Please follow the step by step instructions below to uninstall perl-Getopt-GUI-Long.noarch on Fedora 35:

$ sudo dnf remove perl-Getopt-GUI-Long.noarch $ sudo dnf autoremove

3. Information about the perl-Getopt-GUI-Long.noarch package on Fedora 35

Last metadata expiration check: 5:00:46 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : perl-Getopt-GUI-Long
Version : 0.93
Release : 21.fc35
Architecture : noarch
Size : 31 k
Source : perl-Getopt-GUI-Long-0.93-21.fc35.src.rpm
Repository : fedora
Summary : A wrapper around Getopt::Long to provide a GUI to applications
URL : https://metacpan.org/release/Getopt-GUI-Long
License : GPL+ or Artistic
Description : This module is a wrapper around Getopt::Long that extends the value of
: the original Getopt::Long module to:
:
: 1) add a simple graphical user interface option screen if no arguments
: are passed to the program. Thus, the arguments to actually use are
: built based on the results of the user interface. If arguments were
: passed to the program, the user interface is not shown and the
: program executes as it normally would and acts just as if
: Getopt::Long::GetOptions had been called instead. This requires
: the QWizard and Gtk2 or Tk interfaces to be installed too.
:
: 2) provide an auto-help mechanism such that -h and --help are
: handled automatically. In fact, calling your program with -h
: will default to showing the user a list of short-style arguments
: when one exists for the option. Similarly --help will show the
: user a list of long-style when possible. --help-full will list
: all potential arguments for an option (short and long both).
:
: It's designed to make the creation of graphical shells trivial
: without the programmer having to think about it much as well as
: providing automatic good-looking usage output without the
: programmer needing to write usage() functions.