asdf: add page (#3043)

italian
Unai Esteibar 2019-05-21 15:46:56 +02:00 committed by Lucas Gabriel Schneider
parent 2d7a0b034c
commit f9bc161599
1 changed files with 28 additions and 0 deletions

28
pages/common/asdf.md Normal file
View File

@ -0,0 +1,28 @@
# asdf
> Command line interface for managing versions of different packages.
> Homepage: <https://asdf-vm.com>.
- List all available plugins:
`asdf plugin-list-all`
- Install a plugin:
`asdf plugin-add {{name}}`
- List all available versions for a package:
`asdf list-all {{name}}`
- 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}}`