Welcome

Welcome to my site, it's kind of my playground and sounding board. I can't promise everything is awesome on here but I do try!

About this Slider

This sliding panel is an example of the Widget/Plugin I wrote. You can find more information here

More Information and the code can be found on my Github page

The Social Media Stuff

Update all CPAN Modules

Posted by: on Mar 2, 2011 | No Comments Tags: , ,

I’ve inherited a nasty PERL based web tool for managing IP addresses and realised that I don’t actually know much about PERL. Being faced with over 300 PERL modules that needed to be updated I went looking for some help and found this helpful article here.

Here’s an easy one-liner which will automatically update all of the CPAN modules installed on your machine:

$ sudo perl -MCPAN -e 'CPAN::Shell->notest(install => CPAN::Shell->r)'

I always do it with sudo but you might not have to depending on your preferences.

Since waiting around for all of the tests to complete can be quite dull, I use notest() which might be considered risky by others.

Leave a Reply