Handy command to list all Perl modules installed. perl -MFile::Find=find -MFile::Spec::Functions -lwe ‘find { wanted => sub { print canonpath $_ if /\.pm\z/ }, no_chdir => 1 }, @INC’
Posts Tagged ‘Perl’
Base64 Decode using shell
December 22nd, 2009
No Comments
perl -MMIME::Base64 -ne ‘print decode_base64($_)’ < test.in | less