Archive for April, 2009

Perl one liner to display module version info

Wednesday, April 29th, 2009

I use this Perl one-liner to display the version number of a module. This module should be available in your @INC paths.
If I need to know the version of CGI.pm

$ perl -MCGI -e ‘print “$CGI::VERSION\n”‘
3.29

I created a shell script so that I can just type the module name.

$ cat pm_version.sh
#!/bin/sh
MODULE=$1
perl -M$MODULE -e ‘print “$’$MODULE’::VERSION\n”‘

So now, […]

My new Line 6 POD XT

Tuesday, April 28th, 2009

After much deliberation and budget crunching I finally made up my mind and bought a Line6 POD XT around a week back.

And you can read more about it here - POD XT
To be honest, I’ve not really dived into it yet, but I’m more than pleased with what this processor can offer. Recording guitar sounds […]


Tweet This Post links powered by Tweet This v1.4.1, a WordPress plugin for Twitter.