X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=rustlang%2Frustlang.bash;h=e95f17285aa44c1cf313c91c9d89603cfa958248;hb=1971946c3be75d65f8e8226bc673448947aedea7;hp=76fee724198a0b849a27c62971caa89e7ab2de1a;hpb=f1890991e6952feb8827c221e6bcb9ef9f3fb985;p=webi-installers%2F.git diff --git a/rustlang/rustlang.bash b/rustlang/rustlang.bash index 76fee72..e95f172 100644 --- a/rustlang/rustlang.bash +++ b/rustlang/rustlang.bash @@ -1,2 +1,30 @@ +#!/bin/bash + +# title: Rust +# homepage: https://rust-lang.org +# 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