snippetbashTip
plenv — Switch between multiple versions of Perl. More information: <https://github.com/tokuhirom/plenv#name
Viewed 0 times
plenvcommandbetweenmultipleversionscliperlswitch
Problem
How to use the
plenv command: Switch between multiple versions of Perl. More information: <https://github.com/tokuhirom/plenv#name>.Solution
plenv — Switch between multiple versions of Perl. More information: <https://github.com/tokuhirom/plenv#name>.Show the currently selected Perl version and how it was selected:
plenv versionList all available installed Perl versions:
plenv versionsSet the global Perl version (used unless a local or shell version takes priority):
plenv global {{version}}Set the local application-specific Perl version (used in the current directory and all directories below it):
plenv local {{version}}Set the shell-specific Perl version (used for the current session only):
plenv shell {{version}}Display help:
plenvDisplay help for a command:
plenv help {{command}}Code Snippets
Show the currently selected Perl version and how it was selected
plenv versionList all available installed Perl versions
plenv versionsSet the global Perl version (used unless a local or shell version takes priority)
plenv global {{version}}Set the local application-specific Perl version (used in the current directory and all directories below it)
plenv local {{version}}Set the shell-specific Perl version (used for the current session only)
plenv shell {{version}}Context
tldr-pages: common/plenv
Revisions (0)
No revisions yet.