Category Archives: perl

HOWTO: Create a random alpha-numeric string in Perl

Creating an alpha-numeric string in Perl is easy, but having a quick function you can call is better! This is very useful for things like password generators. To see how to do this in Python, check out this post: …howto-create-a-random-alpha-numeric-string-in-python … Continue reading

Posted in How Tos, perl, Programming | Leave a comment

Build A Custom PERL Installation

If you want to build a PERL installation that is separate from your standard PERL, you can compile one, complete with CPAN support. Just follow these steps: mkdir /custom/perl/ cd /custom/perl/ curl -O http://www.cpan.org/src/perl-5.12.3.tar.gz mkdir perl-5_12_3 gunzip perl-5.12.3.tar.gz tar -xf … Continue reading

Posted in How Tos, perl, Programming | 2 Comments

How To Pass PERL Library Paths From The Environment

You can have PERL look in different places for libraries and modules using a number of methods. If you find yourself using a custom PERL module repository, you can make sure your PERL programs always reference it without touching the … Continue reading

Posted in How Tos, perl, Programming | 3 Comments