Forrest logo
back to the asdf tool

asdf:tldr:2eb9a

asdf: List all available plugins.
$ asdf plugin list all
try on your machine

The command "asdf plugin list all" is used in the context of the asdf version manager tool.

In detail, here is what each component of the command signifies:

  • "asdf": Refers to the asdf version manager, which is a tool used to manage multiple runtime versions such as programming languages or frameworks. It allows you to easily switch between different versions within your development environment.
  • "plugin": This option indicates that we are referring to a plugin operation, which deals with adding or managing various plugins within asdf.
  • "list": This sub-command is used to display a list of available plugins or the plugins currently installed in asdf.
  • "all": This parameter is optional and is used alongside the "list" sub-command. Specifying "all" shows a complete list of all available plugins, both installed and available for installation. If omitted, it would only display the plugins currently installed.

So, when you execute the "asdf plugin list all" command, it will give you a comprehensive list of all the available plugins that can be installed or are already installed in the asdf version manager.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the asdf tool