分类:
2009-04-20 23:59:47
Perl 1-liner to generate an MD5
-------------------------------------------------------------------
This shows how to use a module that normally needs a 'qw' attachment to the use statement (hint: its the = sign). You can add others by using comma separated values.
perl -MDigest::MD5=md5_hex -e 'print md5_hex("What you want to MD5") . "\n"';