X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=webi%2Finstall.sh;h=535598d81830495800029614069b8bbda98e3ff6;hb=eeaa8db394e92b53b0031fa62b33b969366a7913;hp=c5730b2a6a18bf422c65f820b8745b406db1db98;hpb=c017e861e7187ac818ca49b39846f13b7706f4e4;p=webi-installers%2F.git diff --git a/webi/install.sh b/webi/install.sh index c5730b2..535598d 100644 --- a/webi/install.sh +++ b/webi/install.sh @@ -2,23 +2,48 @@ # title: Webi # homepage: https://webinstall.dev -# tagline: webinstall.dev for the CLI +# tagline: | +# Webi is how developers install their tools. # description: | -# for the people like us that are too lazy even to run curl https://webinstall.dev/PACKAGE_NAME | bash +# Webi is what you would have created if you automated how you install your common tools yourself: Simple, direct downloads from official sources, unpacked into `$HOME/.local`, added to `PATH`, symlinked for easy version switching, with minimal niceties like resuming downloads and 'stable' tags. +# +# - Easy to remember. +# - No magic, no nonesense, no bulk. +# - What you would have done for yourself. +# # examples: | +# You can install _exactly_ what you need, from memory, via URL: +# +# ```bash +# curl https://webinstall.dev/node@lts | bash +# ``` +# +# Or via `webi`, the tiny `curl | bash` shortcut command that comes with each install: +# # ```bash # webi node@latest # ``` -#
# # ```bash # webi golang@v1.14 # ``` -#
# # ```bash # webi rustlang # ``` +# +# You can see exactly what PATHs have been edited: +# +# ```bash +# pathman list +# ``` +# +# And where: +# +# ```bash +# cat $HOME/.config/envman/PATH.env +# ``` +# {