1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-09 08:46:00 +02:00
tldr/pages/common/rustup-run.md
Managor 5305776d45
*: capitalize the first letter after "Note:" (#16226)
Co-authored-by: Machiavelli <145562237+MachiavelliII@users.noreply.github.com>
2025-05-04 05:15:17 +03:00

9 lines
434 B
Markdown

# rustup run
> Run a command with an environment configured for a Rust toolchain.
> Note: All commands managed by `rustup` have a shorthand for this: for example, `cargo +nightly build` is equivalent to `rustup run nightly cargo build`.
> More information: <https://rust-lang.github.io/rustup>.
- Run a command using a given Rust toolchain (see `rustup help toolchain` for more information):
`rustup run {{toolchain}} {{command}}`