add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

32
pages.zh/common/plenv.md Normal file
View File

@@ -0,0 +1,32 @@
# plenv
> 在多个 Perl 版本之间切换。
> 更多信息:<https://github.com/tokuhirom/plenv>。
- 显示当前选定的 Perl 版本及其选择方式:
`plenv version`
- 列出所有可用的已安装 Perl 版本:
`plenv versions`
- 设置全局 Perl 版本(除非本地或 shell 版本优先,否则使用此版本):
`plenv global {{version}}`
- 设置本地应用程序特定的 Perl 版本(在当前目录及其所有子目录中使用):
`plenv local {{version}}`
- 设置 shell 特定的 Perl 版本(仅在当前会话中使用):
`plenv shell {{version}}`
- 显示帮助信息:
`plenv`
- 显示某个命令的帮助信息:
`plenv help {{command}}`