perl
Perl tips
Install module in non-standard location
perl Makefile.PL PREFIX=/path/to/installPERL5LIB=/path/to/install perl Makefile.PLIgnore uninitialized variable warnings
no warnings 'uninitialized';Determining if a module is in the path of @INC before using 'use' directive
BEGIN { unless (eval "use My::Mod") { warn "Couldn't load My::Mod: $@";}}CPAN installs
use the Perl::Critic module
easy way to determine module versions
Epoch time ==> human readable
Last updated