Add more commands to documentation.

This commit is contained in:
Victor Hugo Borja 2019-11-27 12:50:31 -06:00
parent ced617fd64
commit 100917c0e4
2 changed files with 11 additions and 8 deletions

View File

@ -28,12 +28,15 @@
| `asdf global <name> <version>` | Set the package global version |
| `asdf latest <name> [<version>]` | Show latest stable version of a package |
| `asdf list <name>` | List installed versions of a package |
| `asdf list all <name> [<version>]` | List all versions of a package and optionally filter the returned versions |
| `asdf list-all <name> [<version>]` | List all versions of a package and optionally filter the returned versions |
## Utils
| Command | Effect |
| ------------------------------ | ---------------------------------------------- |
| `asdf reshim <name> <version>` | Recreate shims for version of a package |
| `asdf update` | Update asdf to the latest stable release |
| `asdf update --head` | Update asdf to the latest on the master branch |
| Command | Effect |
| ------------------------------ | ----------------------------------------------------- |
| `asdf exec <command> [args]` | Runs the currently selected version of command |
| `asdf env <command> [util]` | Executes util inside the environemnt used for command |
| `asdf reshim <name> <version>` | Recreate shims for version of a package |
| `asdf shim-versions <command>` | List the plugins and versions that provide a command |
| `asdf update` | Update asdf to the latest stable release |
| `asdf update --head` | Update asdf to the latest on the master branch |

View File

@ -22,12 +22,12 @@ MANAGE PACKAGES
asdf local <name> <version> Set the package local version
asdf global <name> <version> Set the package global version
asdf list <name> List installed versions of a package
asdf list all <name> List all versions of a package
asdf list-all <name> List all versions of a package
UTILS
asdf exec <command> [args..] Executes the command shim for current version
asdf env <command> [executable] Prints or runs an executable under a command environment
asdf env <command> [util] Runs util (default: `env`) inside the environment used for command shim execution.
asdf reshim <name> <version> Recreate shims for version of a package
asdf shim-versions <command> List on which plugins and versions is command available
asdf update Update asdf to the latest stable release