Skip to content

Instantly share code, notes, and snippets.

@davorg
Created April 21, 2022 14:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davorg/da13a9603bc3b0a1521ab70dbe04865f to your computer and use it in GitHub Desktop.
Save davorg/da13a9603bc3b0a1521ab70dbe04865f to your computer and use it in GitHub Desktop.
Bash function to get Perl module versions
function cpanver {
for mod in "$@"
do
perl -M$mod -E"say qq[$mod - \$$mod::VERSION]"
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment