How to install perl in Android using Termux


What is Perl ?

Perl is a general-purpose programming language originally developed for text manipulation and now used for a wide range of tasks including system administration, web development, network programming, GUI development, and more.

How to install in Android?


Open termux app and type following commands :

$ pkg update
$ pkg install perl

How to install in Ubuntu ?

Open terminal and type following commands :

$ sudo apt-get update
$ sudo apt-get install perl

Hello world program in perl :

#!/usr/bin/perl
use warnings;
print("Hello World\n");

How to run perl program ?

$ perl file_name.pl

Comments