1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/asdf.md

29 lines
522 B
Markdown
Raw Normal View History

2019-05-21 15:46:56 +02:00
# asdf
> Command-line interface for managing versions of different packages.
> More information: <https://asdf-vm.com>.
2019-05-21 15:46:56 +02:00
- List all available plugins:
`asdf plugin list all`
2019-05-21 15:46:56 +02:00
- Install a plugin:
`asdf plugin add {{name}}`
2019-05-21 15:46:56 +02:00
- List all available versions for a package:
`asdf list all {{name}}`
2019-05-21 15:46:56 +02:00
- Install a specific version of a package:
`asdf install {{name}} {{version}}`
- Set global version for a package:
`asdf global {{name}} {{version}}`
- Set local version for a package:
`asdf local {{name}} {{version}}`