http://www.perlmonks.org?node_id=477096


in reply to Perl Best Practices

For what it's worth, a few minor errata that caught my eye:

I can't find the Getopt::Clade on CPAN; am I looking in the wrong place?

Also, on page 151-152, I was disapointed not to find an example of GRT sorting; I know you mention it on page 164, but a roll-your-own example might help popularize this seemingly esoteric technique...

# Sort by SHA-512 digest of scripts # (optimized with Gutman-Rosler packed default sort) @sorted_scripts = map { substr($_, 64) } sort map { sha512($_) . $_ } @scripts;