LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

rustup-help

Display help for rustup commands

TLDR

Show top-level help
$ rustup help
copy
Help for a specific subcommand
$ rustup help [command]
copy
Help for a nested subcommand
$ rustup help [toolchain] [install]
copy
Help for the override subcommand
$ rustup help override
copy

SYNOPSIS

rustup help [subcommand...]

DESCRIPTION

rustup help prints usage, options, and the list of subcommands for rustup or any of its subcommands. It is equivalent to running the command with --help, but accepts nested subcommand names as positional arguments instead of flags.

PARAMETERS

subcommand

One or more subcommand names to drill into. Without arguments, rustup prints its top-level help.

INSTALL

sudo apt install rustup
copy
sudo dnf install rustup
copy
sudo pacman -S rustup
copy
sudo zypper install rustup
copy
brew install rustup
copy
nix profile install nixpkgs#rustup
copy

SEE ALSO

rustup(1)

Copied to clipboard
Kai