···11+% asdf
22+33+# Update all plugins
44+asdf plugin update --all
55+66+# List installed plugins
77+asdf plugin list --urls
88+99+# List currently installed tools and their currently set version
1010+asdf current
1111+1212+# List installed versions for a tool
1313+asdf list <tool_name>
1414+1515+# List latest stable version for a tool and compare it to your installed versions
1616+printf "Latest Stable Version\n" && asdf latest <tool_name> && printf "\nInstalled Versions\n" && asdf list <tool_name>
1717+1818+# Install latest stable tool version
1919+asdf install <tool_name> latest
2020+2121+# Set tool to latest installed stable version
2222+asdf set -u <tool_name> latest
2323+2424+# Uninstall a tool version
2525+asdf uninstall <tool_name> <tool_version>