X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=rustlang%2Frustlang.bash;h=e95f17285aa44c1cf313c91c9d89603cfa958248;hb=7215970c2340155c5f4a4dc585483f5a9c46a0a9;hp=392356c7e0b24b980a30303b720a6f42b5c2259e;hpb=40c68aff32a899150625e3c0847410dccaf6e3fa;p=webi-installers%2F.git diff --git a/rustlang/rustlang.bash b/rustlang/rustlang.bash index 392356c..e95f172 100644 --- a/rustlang/rustlang.bash +++ b/rustlang/rustlang.bash @@ -5,6 +5,26 @@ # tagline: The Rust Toolchain # description: | # A language empowering everyone to build reliable and efficient software. +# +# Rust is the modern language used to build all of your favorite CLI tools, such as +# - rg (ripgrep, modern grep) +# - fd (modern find) +# - sd (modern sed) +# - lsd (modern ls) +# - bat (modern cat) +# examples: | +# ```bash +# cargo install ripgrep +# ``` +#
+# +# ```bash +# cargo new hello --bin +# cargo build --release +# ./hello +# > "Hello, world!" +# ``` + # Straight from https://rustup.rs/ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh