Forrest logo
back to the sdk tool

sdk:tldr:92b81

sdk: Use a specific SDK version for the current terminal session.
$ sdk use ${sdk_name} ${sdk_version}
try on your machine

This command is using the SDK (software development kit) specified with the name and version provided.

  • sdk use is the command used to switch to a specific SDK version.
  • ${sdk_name} is a placeholder that should be replaced with the actual name of the SDK you want to use. For example, if you want to use the Java SDK, you would replace ${sdk_name} with java.
  • ${sdk_version} is another placeholder that should be replaced with the version number of the SDK you want to use. For example, if you want to use Java SDK version 11, you would replace ${sdk_version} with 11.

When you run this command with the actual SDK name and version, it will set your development environment to use that specific SDK version, allowing you to compile, run, and build applications using that particular SDK.

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 sdk tool