From c39d4cb29f67218f569c26b7e6e5bff37f63d7af Mon Sep 17 00:00:00 2001 From: dz-at-tc <49352191+dz-at-tc@users.noreply.github.com> Date: Sat, 30 Oct 2021 09:20:59 -0400 Subject: [PATCH] plenv: add page (#7118) --- pages/common/plenv.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/common/plenv.md diff --git a/pages/common/plenv.md b/pages/common/plenv.md new file mode 100644 index 0000000000..863e3e105c --- /dev/null +++ b/pages/common/plenv.md @@ -0,0 +1,32 @@ +# plenv + +> Switch between multiple versions of Perl. +> More information: . + +- Show the currently selected Perl version and how it was selected: + +`plenv version` + +- List all available installed Perl versions: + +`plenv versions` + +- Set 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: + +`plenv` + +- Display help for a command: + +`plenv help {{command}}`