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

33 lines
613 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/manage/commands.html>.
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 set -u {{name}} {{version}}`
2019-05-21 15:46:56 +02:00
- Set local version for a package:
`asdf set {{name}} {{version}}`
- See the current version used for a package:
`asdf current {{name}}`