Which verision of PERL is installed on the server?

In order to find out which perl is installed you can run

perl -v

This is perl 5, version 16, subversion 3 (v5.16.3) built for x86_64-linux-thread-multi

On most of the FreeBSD servers there is perl5.16.x and perl5. /usr/bin/perl is 5.16.3 /usr/bin/perl5 is 5.005_03 - most likely you want the later version of perl. The older version is part of the FreeBSD operating system itself and is deprecated.

You can call perl5.16.x as perl e.g.

perl -v This is perl, v5.16.3 built for i386-freebsd-64int

You can call the older perl5 as perl5 e.g.

perl5 -v This is perl, version 5.005_03 built for i386-freebsd

  • perl, cgi
  • 0 istifadəçi bunu faydalı hesab edir
Bu cavab sizə kömək etdi?

Uyğun məqalələr

Using FTP to upload files

Tech Note: While FTP is still a widely used and accepted protocol it is deprecated due to the...

What is a domain alias and how do I add or remove a domain alias?

A domain alias is a domain which you own, but which doesn't have it's own website or unique...

How to access a Website before it is made live on the Internet

Question: How do I access a website my new website before making it live on the Internet? We are...

How to force SSL using .htaccess

To force your site to use SSL/https you should create a .htaccess file inside your site's...