How to Install and Uninstall jsap.noarch Package on Fedora 34

Last updated: September 28,2024

1. Install "jsap.noarch" package

Please follow the steps below to install jsap.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install jsap.noarch

2. Uninstall "jsap.noarch" package

Please follow the guidance below to uninstall jsap.noarch on Fedora 34:

$ sudo dnf remove jsap.noarch $ sudo dnf autoremove

3. Information about the jsap.noarch package on Fedora 34

Last metadata expiration check: 0:18:26 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : jsap
Version : 2.1
Release : 18.3.fc34
Architecture : noarch
Size : 71 k
Source : jsap-2.1-18.3.fc34.src.rpm
Repository : fedora
Summary : A Java-based Simple Argument Parser
URL : http://www.martiansoftware.com/jsap/
License : LGPLv3+
Description : JSAP not only syntactically validates your program's command line
: arguments, but it converts those arguments into objects you specify. If you
: tell JSAP that one of your parameters is an Integer, for example, and the
: user does not provide a String that can be converted to an Integer when
: invoking the program, JSAP will throw a ParseException when you have it
: parse the command line. If no exception is thrown, you are guaranteed an
: Integer when you request that parameter's value from your program. There's
: a pretty big (and growing) list of return types supported by JSAP, including
: Integers, Floats, Dates, URLs, and even java.awt.Colors; you can also add
: your own in a matter of minutes.