Last Updated: February 25, 2016
·
719
· kablamo

Install all your favorited modules from MetaCPAN

Use these bash functions in your .bashrc:

metacpan-favorites() {
    curl -s  https://metacpan.org/author/KABLAMO | perl -ne 'if (m!class="release".*/release/([^"]+)!) { $_ = $1; s/-/::/g; print $_,$/ }'
}

cpanm-metacpan-favorites {
    metacpan-favorites | cpanm -nv
}

This is not my idea. All credit for this goes to:
http://blog.64p.org/entry/2013/01/15/111647