How To Install perl-Long-Jump on Fedora 36

In this tutorial we learn how to install perl-Long-Jump in Fedora 36. perl-Long-Jump is Mechanism for returning to a specific point from a deeply nested stack

Introduction

In this tutorial we learn how to install perl-Long-Jump on Fedora 36.

What is perl-Long-Jump

This Perl module essentially provides a multi-level return. You can mark a spot with setjump() and then unwind the stack back to that point from any nested stack frame by name using longjump(). You can also provide a list of return values. It is safer than C language jump in that it only lets you escape frames by going up the stack, you cannot jump in other ways.

We can use yum or dnf to install perl-Long-Jump on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install perl-Long-Jump.

Install perl-Long-Jump on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install perl-Long-Jump using dnf by running the following command:

sudo dnf -y install perl-Long-Jump

Install perl-Long-Jump on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install perl-Long-Jump using yum by running the following command:

sudo yum -y install perl-Long-Jump

How To Uninstall perl-Long-Jump on Fedora 36

To uninstall only the perl-Long-Jump package we can use the following command:

sudo dnf remove perl-Long-Jump

perl-Long-Jump Package Contents on Fedora 36

/usr/share/doc/perl-Long-Jump
/usr/share/doc/perl-Long-Jump/Changes
/usr/share/doc/perl-Long-Jump/README
/usr/share/licenses/perl-Long-Jump
/usr/share/licenses/perl-Long-Jump/LICENSE
/usr/share/man/man3/Long::Jump.3pm.gz
/usr/share/perl5/vendor_perl/Long
/usr/share/perl5/vendor_perl/Long/Jump.pm

References

Summary

In this tutorial we learn how to install perl-Long-Jump on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).