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

42
perlbrew Normal file
View File

@@ -0,0 +1,42 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# perlbrew
> Manage Perl installations in the home directory.
> See also: `asdf`.
> More information: <https://github.com/gugod/App-perlbrew>.
- Initialize a `perlbrew` environment:
`perlbrew init`
- List available Perl versions:
`perlbrew available`
- Install/uninstall a Perl version:
`perlbrew {{install|uninstall}} {{version}}`
- List perl installations:
`perlbrew list`
- Switch to an installation and set it as default:
`perlbrew switch perl-{{version}}`
- Use the system Perl again:
`perlbrew off`
- List installed CPAN modules for the installation in use:
`perlbrew list-modules`
- Clone CPAN modules from one installation to another:
`perlbrew clone-modules {{source_installation}} {{destination_installation}}`