DOKK / manpages / debian 12 / rex / Rex::Commands::MD5.3pm.en
Rex::Commands::MD5(3pm) User Contributed Perl Documentation Rex::Commands::MD5(3pm)

Rex::Commands::MD5 - Calculate MD5 sum of files

With this module you calculate the md5 sum of a file.

This is just a helper function and will not be reported.

 use Rex::Commands::MD5;
 my $md5 = md5($file);

This function will return the MD5 checksum (hexadecimal) for the given file.

 task "checksum", "server01", sub {
   say md5("/etc/passwd");
 };
2023-03-06 perl v5.36.0