Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

37
plenv Normal file
View File

@@ -0,0 +1,37 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# plenv
> Switch between multiple versions of Perl.
> More information: <https://github.com/tokuhirom/plenv>.
- 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}}`