How To Install libtest-script-perl on Kali Linux

In this tutorial we learn how to install libtest-script-perl on Kali Linux. libtest-script-perl is Perl test module for scripts

Introduction

In this tutorial we learn how to install libtest-script-perl on Kali Linux.

What is libtest-script-perl

libtest-script-perl is:

Test::Script is a Perl module that provides a series of basic tests for those files usually found in the bin or scripts directory of your package. It aims to provide your scripts with perfect platform-compatability and in a way that is as unobstrusive as possible. The general idea is that if a program works on a platform, then Test::Script tests should also pass on that platform.

There are three methods to install libtest-script-perl on Kali Linux. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libtest-script-perl Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libtest-script-perl using apt-get by running the following command:

sudo apt-get -y install libtest-script-perl

Install libtest-script-perl Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libtest-script-perl using apt by running the following command:

sudo apt -y install libtest-script-perl

Install libtest-script-perl Using aptitude

If you want to follow this method, you might need to install aptitude on Kali Linux first since aptitude is usually not installed by default on Kali Linux. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libtest-script-perl using aptitude by running the following command:

sudo aptitude -y install libtest-script-perl

How To Uninstall libtest-script-perl on Kali Linux

To uninstall only the libtest-script-perl package we can use the following command:

sudo apt-get remove libtest-script-perl

Uninstall libtest-script-perl And Its Dependencies

To uninstall libtest-script-perl and its dependencies that are no longer needed by Kali Linux, we can use the command below:

sudo apt-get -y autoremove libtest-script-perl

Remove libtest-script-perl Configurations and Data

To remove libtest-script-perl configuration and data from Kali Linux we can use the following command:

sudo apt-get -y purge libtest-script-perl

Remove libtest-script-perl configuration, data, and all of its dependencies

We can use the following command to remove libtest-script-perl configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libtest-script-perl

Dependencies

libtest-script-perl have the following dependencies:

References

Summary

In this tutorial we learn how to install libtest-script-perl package on Kali Linux using different package management tools: apt, apt-get and aptitude.