How to Install and Uninstall perl-Affix-Infix2Postfix.noarch Package on Fedora 35

Last updated: October 06,2024

1. Install "perl-Affix-Infix2Postfix.noarch" package

Please follow the steps below to install perl-Affix-Infix2Postfix.noarch on Fedora 35

$ sudo dnf update $ sudo dnf install perl-Affix-Infix2Postfix.noarch

2. Uninstall "perl-Affix-Infix2Postfix.noarch" package

Learn how to uninstall perl-Affix-Infix2Postfix.noarch on Fedora 35:

$ sudo dnf remove perl-Affix-Infix2Postfix.noarch $ sudo dnf autoremove

3. Information about the perl-Affix-Infix2Postfix.noarch package on Fedora 35

Last metadata expiration check: 0:47:35 ago on Wed Sep 7 02:25:42 2022.
Available Packages
Name : perl-Affix-Infix2Postfix
Version : 0.03
Release : 37.fc35
Architecture : noarch
Size : 14 k
Source : perl-Affix-Infix2Postfix-0.03-37.fc35.src.rpm
Repository : fedora
Summary : Perl extension for converting from infix notation to postfix notation
URL : https://metacpan.org/release/Affix-Infix2Postfix
License : GPL+ or Artistic
Description : Infix2Postfix as the name suggests converts from infix to postfix notation.
: The reason why someone would like to do this is that postfix notation is
: generally much easier to do in computers. For example take an expression
: like: a+b+c*d. For us humans it's pretty easy to do that calculation. But
: it's actually much better for computers to get a string of operations such
: as: a b + c d * +, where the variable names mean put variable on stack.