/ Published in: Perl
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.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
perl -MDigest::MD5=md5_hex -e 'print md5_hex("What you want to MD5") . "\n";'