mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-28 02:55:38 +02:00

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> Co-authored-by: Alexandre ZANNI <16578570+noraj@users.noreply.github.com>
29 lines
672 B
Markdown
29 lines
672 B
Markdown
# asdf
|
|
|
|
> Verwalte installierte Versionen von verschiedenen Paketen.
|
|
> Plugins (z.B. asdf-node) werden für spezifische Pakete verwendet.
|
|
> Weitere Informationen: <https://asdf-vm.com/manage/commands.html>.
|
|
|
|
- Liste alle verfügbaren Plugins auf:
|
|
|
|
`asdf plugin list all`
|
|
|
|
- Installiere ein neues Plugin:
|
|
|
|
`asdf plugin add {{name}}`
|
|
|
|
- Liste alle verfügbaren Versionen für ein Paket auf:
|
|
|
|
`asdf list all {{name}}`
|
|
|
|
- Installiere eine spezifische Version eines Pakets:
|
|
|
|
`asdf install {{name}} {{version}}`
|
|
|
|
- Lege die globale Version für ein Paket fest:
|
|
|
|
`asdf set -u {{name}} {{version}}`
|
|
|
|
- Lege die lokale Version für ein Paket fest:
|
|
|
|
`asdf set {{name}} {{version}}`
|