From 7d9b9ba671594f3de9458f0844898615a6bd495f Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:38:55 -0700 Subject: [PATCH 01/15] Un-format table --- README.md | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 25e2f0f6d6..d8ec80451d 100644 --- a/README.md +++ b/README.md @@ -103,25 +103,25 @@ You can also set the shell using command-line arguments. For example, to use Pow ### Packages -| Operating System | Package Manager | Package | Command | -| ---------------------------------------------------- | ------------------------- | ------------------------------------------------ | --------------------------------------------------------------------------------------- | -| [Various][rust-platforms] | [Cargo][cargo] | [just][just-crate] | `cargo install just` | -| [Microsoft Windows][windows] | [Scoop][scoop] | [just][just-scoop] | `scoop install just` | -| [Various][homebrew-install] | [Homebrew][homebrew] | [just][just-homebrew] | `brew install just` | -| [macOS][macos] | [MacPorts][macports] | [just][just-macports] | `port install just` | -| [Arch Linux][arch linux] | [pacman][pacman] | [just][just-pacman] | `pacman -S just` | -| [Various][nix-platforms] | [Nix][nix] | [just][just-nixpkg] | `nix-env -iA nixpkgs.just` | -| [NixOS][nixos] | [Nix][nix] | [just][just-nixpkg] | `nix-env -iA nixos.just` | -| [Solus][solus] | [eopkg][solus-eopkg] | [just][just-solus] | `eopkg install just` | -| [Void Linux][void linux] | [XBPS][xbps] | [just][just-void] | `xbps-install -S just` | -| [FreeBSD][freebsd] | [pkg][freebsd-pkg] | [just][just-freebsd] | `pkg install just` | -| [Alpine Linux][alpine linux] | [apk-tools][apk-tools] | [just][just-alpine] | `apk add just` | -| [Fedora Linux][fedora linux] | [DNF][dnf] | [just][just-fedora] | `dnf install just` | -| [Gentoo Linux][gentoo linux] | [Portage][gentoo-portage] | [dm9pZCAq overlay: sys-devel/just][just-portage] | `eselect repository enable dm9pZCAq && emerge --sync dm9pZCAq && emerge sys-devel/just` | -| [Various][conda-platforms] | [Conda][conda] | [just][just-conda] | `conda install -c conda-forge just` | -| [Microsoft Windows][windows] | [Chocolatey][chocolatey] | [just][just-chocolatey] | `choco install just` | -| [Various][snap-platforms] | [Snap][snap] | [just][just-snap] | `snap install --edge --classic just` | -| [Various][asdf-platforms] | [asdf][asdf] | [just][just-asdf] | `asdf plugin add just && asdf install just ` | +| Operating System | Package Manager | Package | Command | +| --- | --- | --- | --- | +| [Various][rust-platforms] | [Cargo][cargo] | [just][just-crate] | `cargo install just` | +| [Microsoft Windows][windows] | [Scoop][scoop] | [just][just-scoop] | `scoop install just` | +| [Various][homebrew-install] | [Homebrew][homebrew] | [just][just-homebrew] | `brew install just` | +| [macOS][macos] | [MacPorts][macports] | [just][just-macports] | `port install just` | +| [Arch Linux][arch linux] | [pacman][pacman] | [just][just-pacman] | `pacman -S just` | +| [Various][nix-platforms] | [Nix][nix] | [just][just-nixpkg] | `nix-env -iA nixpkgs.just` | +| [NixOS][nixos] | [Nix][nix] | [just][just-nixpkg] | `nix-env -iA nixos.just` | +| [Solus][solus] | [eopkg][solus-eopkg] | [just][just-solus] | `eopkg install just` | +| [Void Linux][void linux] | [XBPS][xbps] | [just][just-void] | `xbps-install -S just` | +| [FreeBSD][freebsd] | [pkg][freebsd-pkg] | [just][just-freebsd] | `pkg install just` | +| [Alpine Linux][alpine linux] | [apk-tools][apk-tools] | [just][just-alpine] | `apk add just` | +| [Fedora Linux][fedora linux] | [DNF][dnf] | [just][just-fedora] | `dnf install just` | +| [Gentoo Linux][gentoo linux] | [Portage][gentoo-portage] | [dm9pZCAq overlay: sys-devel/just][just-portage] | `eselect repository enable dm9pZCAq && emerge --sync dm9pZCAq && emerge sys-devel/just` | +| [Various][conda-platforms] | [Conda][conda] | [just][just-conda] | `conda install -c conda-forge just` | +| [Microsoft Windows][windows] | [Chocolatey][chocolatey] | [just][just-chocolatey] | `choco install just` | +| [Various][snap-platforms] | [Snap][snap] | [just][just-snap] | `snap install --edge --classic just` | +| [Various][asdf-platforms] | [asdf][asdf] | [just][just-asdf] | `asdf plugin add just && asdf install just ` | [alpine linux]: https://alpinelinux.org [asdf]: https://asdf-vm.com @@ -1369,7 +1369,7 @@ build target: A command's arguments can be passed to dependency by putting the dependency in parentheses along with the arguments: ```make -build target: +build target: @echo "Building {{target}}…" push target: (build target) From b510275a2ae13567afcbe1679317816c910411b6 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:39:51 -0700 Subject: [PATCH 02/15] Try formatting row --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d8ec80451d..f343ab2302 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,12 @@ You can also set the shell using command-line arguments. For example, to use Pow | Operating System | Package Manager | Package | Command | | --- | --- | --- | --- | -| [Various][rust-platforms] | [Cargo][cargo] | [just][just-crate] | `cargo install just` | + +| [Various][rust-platforms] +| [Cargo][cargo] +| [just][just-crate] +| `cargo install just` | + | [Microsoft Windows][windows] | [Scoop][scoop] | [just][just-scoop] | `scoop install just` | | [Various][homebrew-install] | [Homebrew][homebrew] | [just][just-homebrew] | `brew install just` | | [macOS][macos] | [MacPorts][macports] | [just][just-macports] | `port install just` | From 054fe831bcd4c2507bfde78b1f91e7846a3c01bf Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:40:16 -0700 Subject: [PATCH 03/15] tweak --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index f343ab2302..75d1f60af3 100644 --- a/README.md +++ b/README.md @@ -105,12 +105,10 @@ You can also set the shell using command-line arguments. For example, to use Pow | Operating System | Package Manager | Package | Command | | --- | --- | --- | --- | - | [Various][rust-platforms] | [Cargo][cargo] | [just][just-crate] | `cargo install just` | - | [Microsoft Windows][windows] | [Scoop][scoop] | [just][just-scoop] | `scoop install just` | | [Various][homebrew-install] | [Homebrew][homebrew] | [just][just-homebrew] | `brew install just` | | [macOS][macos] | [MacPorts][macports] | [just][just-macports] | `port install just` | From 0db84e4d4c6a1d29d2406ebd6255d5f97acdad7b Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:40:35 -0700 Subject: [PATCH 04/15] tweak --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 75d1f60af3..7dcc5539e3 100644 --- a/README.md +++ b/README.md @@ -106,9 +106,9 @@ You can also set the shell using command-line arguments. For example, to use Pow | Operating System | Package Manager | Package | Command | | --- | --- | --- | --- | | [Various][rust-platforms] -| [Cargo][cargo] -| [just][just-crate] -| `cargo install just` | + | [Cargo][cargo] + | [just][just-crate] + | `cargo install just` | | [Microsoft Windows][windows] | [Scoop][scoop] | [just][just-scoop] | `scoop install just` | | [Various][homebrew-install] | [Homebrew][homebrew] | [just][just-homebrew] | `brew install just` | | [macOS][macos] | [MacPorts][macports] | [just][just-macports] | `port install just` | From e7f7282375eecc413045b812781eecc2c9f384e1 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:41:38 -0700 Subject: [PATCH 05/15] tweak --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 7dcc5539e3..d8ec80451d 100644 --- a/README.md +++ b/README.md @@ -105,10 +105,7 @@ You can also set the shell using command-line arguments. For example, to use Pow | Operating System | Package Manager | Package | Command | | --- | --- | --- | --- | -| [Various][rust-platforms] - | [Cargo][cargo] - | [just][just-crate] - | `cargo install just` | +| [Various][rust-platforms] | [Cargo][cargo] | [just][just-crate] | `cargo install just` | | [Microsoft Windows][windows] | [Scoop][scoop] | [just][just-scoop] | `scoop install just` | | [Various][homebrew-install] | [Homebrew][homebrew] | [just][just-homebrew] | `brew install just` | | [macOS][macos] | [MacPorts][macports] | [just][just-macports] | `port install just` | From 77d638ce5dc52ff3a1dc89fc64224f201a6cc7ee Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:47:42 -0700 Subject: [PATCH 06/15] Just use HTML table --- README.md | 184 +++++++++++++++++++++++++++++++++--------------------- 1 file changed, 114 insertions(+), 70 deletions(-) diff --git a/README.md b/README.md index d8ec80451d..7bf3791cd9 100644 --- a/README.md +++ b/README.md @@ -103,76 +103,120 @@ You can also set the shell using command-line arguments. For example, to use Pow ### Packages -| Operating System | Package Manager | Package | Command | -| --- | --- | --- | --- | -| [Various][rust-platforms] | [Cargo][cargo] | [just][just-crate] | `cargo install just` | -| [Microsoft Windows][windows] | [Scoop][scoop] | [just][just-scoop] | `scoop install just` | -| [Various][homebrew-install] | [Homebrew][homebrew] | [just][just-homebrew] | `brew install just` | -| [macOS][macos] | [MacPorts][macports] | [just][just-macports] | `port install just` | -| [Arch Linux][arch linux] | [pacman][pacman] | [just][just-pacman] | `pacman -S just` | -| [Various][nix-platforms] | [Nix][nix] | [just][just-nixpkg] | `nix-env -iA nixpkgs.just` | -| [NixOS][nixos] | [Nix][nix] | [just][just-nixpkg] | `nix-env -iA nixos.just` | -| [Solus][solus] | [eopkg][solus-eopkg] | [just][just-solus] | `eopkg install just` | -| [Void Linux][void linux] | [XBPS][xbps] | [just][just-void] | `xbps-install -S just` | -| [FreeBSD][freebsd] | [pkg][freebsd-pkg] | [just][just-freebsd] | `pkg install just` | -| [Alpine Linux][alpine linux] | [apk-tools][apk-tools] | [just][just-alpine] | `apk add just` | -| [Fedora Linux][fedora linux] | [DNF][dnf] | [just][just-fedora] | `dnf install just` | -| [Gentoo Linux][gentoo linux] | [Portage][gentoo-portage] | [dm9pZCAq overlay: sys-devel/just][just-portage] | `eselect repository enable dm9pZCAq && emerge --sync dm9pZCAq && emerge sys-devel/just` | -| [Various][conda-platforms] | [Conda][conda] | [just][just-conda] | `conda install -c conda-forge just` | -| [Microsoft Windows][windows] | [Chocolatey][chocolatey] | [just][just-chocolatey] | `choco install just` | -| [Various][snap-platforms] | [Snap][snap] | [just][just-snap] | `snap install --edge --classic just` | -| [Various][asdf-platforms] | [asdf][asdf] | [just][just-asdf] | `asdf plugin add just && asdf install just ` | - -[alpine linux]: https://alpinelinux.org -[asdf]: https://asdf-vm.com -[asdf-platforms]: https://github.com/casey/just/releases -[apk-tools]: https://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management -[arch linux]: https://www.archlinux.org -[cargo]: https://www.rust-lang.org -[chocolatey]: https://chocolatey.org -[conda-platforms]: https://docs.conda.io/en/latest/miniconda.html#system-requirements -[conda]: https://docs.conda.io/projects/conda/en/latest/index.html -[dnf]: https://dnf.readthedocs.io/en/latest/ -[fedora linux]: https://getfedora.org -[freebsd-pkg]: https://www.freebsd.org/doc/handbook/pkgng-intro.html -[freebsd]: https://www.freebsd.org -[gentoo linux]: https://www.gentoo.org -[gentoo-portage]: https://wiki.gentoo.org/wiki/Portage -[homebrew-install]: https://docs.brew.sh/Installation -[homebrew]: https://brew.sh -[just-alpine]: https://pkgs.alpinelinux.org/package/edge/community/x86_64/just -[just-asdf]: https://github.com/ggilmore/asdf-just -[just-chocolatey]: https://github.com/michidk/just-choco -[just-conda]: https://anaconda.org/conda-forge/just -[just-crate]: https://crates.io/crates/just -[just-fedora]: https://src.fedoraproject.org/rpms/rust-just -[just-freebsd]: https://www.freshports.org/deskutils/just/ -[just-homebrew]: https://formulae.brew.sh/formula/just -[just-macports]: https://ports.macports.org/port/just/summary -[just-nixpkg]: https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/tools/just/default.nix -[just-pacman]: https://archlinux.org/packages/community/x86_64/just/ -[just-portage]: https://github.com/gentoo-mirror/dm9pZCAq/tree/master/sys-devel/just -[just-scoop]: https://github.com/ScoopInstaller/Main/blob/master/bucket/just.json -[just-snap]: https://snapcraft.io/just -[just-solus]: https://dev.getsol.us/source/just/ -[just-void]: https://github.com/void-linux/void-packages/blob/master/srcpkgs/just/template -[macos]: https://en.wikipedia.org/wiki/MacOS -[macports]: https://www.macports.org -[nix-plat]: https://nixos.org/nix/manual/#ch-supported-platforms -[nix-platforms]: https://nixos.org/download.html#download-nix -[nix]: https://nixos.org/nix/ -[nixos]: https://nixos.org/nixos/ -[pacman]: https://wiki.archlinux.org/title/Pacman -[rust-platforms]: https://forge.rust-lang.org/release/platform-support.html -[scoop]: https://scoop.sh -[snap-platforms]: https://snapcraft.io/docs/installing-snapd -[snap]: https://snapcraft.io -[solus-eopkg]: https://getsol.us/articles/package-management/basics/en -[solus]: https://getsol.us -[ubuntu]: https://ubuntu.com -[void linux]: https://voidlinux.org -[windows]: https://en.wikipedia.org/wiki/Microsoft_Windows -[xbps]: https://wiki.voidlinux.org/XBPS + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Operating SystemPackage ManagerPackageCommand
VariousCargojustcargo install just
Microsoft WindowsScoopjustscoop install just
VariousHomebrewjustbrew install just
macOSMacPortsjustport install just
Arch Linuxpacmanjustpacman -S just
VariousNixjustnix-env -iA nixpkgs.just
NixOSNixjustnix-env -iA nixos.just
Soluseopkgjusteopkg install just
Void LinuxXBPSjustxbps-install -S just
FreeBSDpkgjustpkg install just
Alpine Linuxapk-toolsjustapk add just
Fedora LinuxDNFjustdnf install just
Gentoo LinuxPortagedm9pZCAq overlay: sys-devel/justeselect repository enable dm9pZCAq && emerge --sync dm9pZCAq && emerge sys-devel/just
VariousCondajustconda install -c conda-forge just
Microsoft WindowsChocolateyjustchoco install just
VariousSnapjustsnap install --edge --classic just
Variousasdfjustasdf plugin add just && asdf install just <version>
![package version table](https://repology.org/badge/vertical-allrepos/just.svg) From 7e061496c6dafa9cb3c4022597378ae106335765 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:49:36 -0700 Subject: [PATCH 07/15] tweak --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7bf3791cd9..7c8e6660db 100644 --- a/README.md +++ b/README.md @@ -189,7 +189,12 @@ You can also set the shell using command-line arguments. For example, to use Pow Gentoo Linux Portage dm9pZCAq overlay: sys-devel/just - eselect repository enable dm9pZCAq && emerge --sync dm9pZCAq && emerge sys-devel/just + + + eselect repository enable dm9pZCAq + emerge --sync dm9pZCAq && emerge sys-devel/just + + Various From 1cef2933861e7995fb5fd944eaae05d61b016faf Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:49:53 -0700 Subject: [PATCH 08/15] tweak --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7c8e6660db..46825db962 100644 --- a/README.md +++ b/README.md @@ -192,6 +192,7 @@ You can also set the shell using command-line arguments. For example, to use Pow eselect repository enable dm9pZCAq +
emerge --sync dm9pZCAq && emerge sys-devel/just
From 940ee9be3037f736ffb4d008fbfb557524d70695 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:50:45 -0700 Subject: [PATCH 09/15] tweak --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 46825db962..0f11ec55db 100644 --- a/README.md +++ b/README.md @@ -193,6 +193,9 @@ You can also set the shell using command-line arguments. For example, to use Pow eselect repository enable dm9pZCAq
+
+
+
emerge --sync dm9pZCAq && emerge sys-devel/just
From 5c00754310228d7e180d4b04cb029bc1eef4e775 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:51:30 -0700 Subject: [PATCH 10/15] tweak --- README.md | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/README.md b/README.md index 0f11ec55db..7bf3791cd9 100644 --- a/README.md +++ b/README.md @@ -189,16 +189,7 @@ You can also set the shell using command-line arguments. For example, to use Pow Gentoo Linux Portage dm9pZCAq overlay: sys-devel/just - - - eselect repository enable dm9pZCAq -
-
-
-
- emerge --sync dm9pZCAq && emerge sys-devel/just -
- + eselect repository enable dm9pZCAq && emerge --sync dm9pZCAq && emerge sys-devel/just Various From f6d24006600624216e0fac8b7ad3cf061f1cceb6 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:52:22 -0700 Subject: [PATCH 11/15] tweak --- README.md | 98 +++++++++++++++++++++++++++---------------------------- 1 file changed, 49 insertions(+), 49 deletions(-) diff --git a/README.md b/README.md index 7bf3791cd9..98c23d6a6c 100644 --- a/README.md +++ b/README.md @@ -114,106 +114,106 @@ You can also set the shell using command-line arguments. For example, to use Pow - Various - Cargo - just + Various + Cargo + just cargo install just - Microsoft Windows - Scoop + Microsoft Windows + Scoop just scoop install just - Various - Homebrew - just + Various + Homebrew + just brew install just - macOS - MacPorts - just + macOS + MacPorts + just port install just - Arch Linux - pacman - just + Arch Linux + pacman + just pacman -S just - Various - Nix + Various + Nix just nix-env -iA nixpkgs.just - NixOS - Nix + NixOS + Nix just nix-env -iA nixos.just - Solus - eopkg - just + Solus + eopkg + just eopkg install just - Void Linux - XBPS + Void Linux + XBPS just xbps-install -S just - FreeBSD - pkg - just + FreeBSD + pkg + just pkg install just - Alpine Linux - apk-tools - just + Alpine Linux + apk-tools + just apk add just - Fedora Linux - DNF - just + Fedora Linux + DNF + just dnf install just - Gentoo Linux - Portage + Gentoo Linux + Portage dm9pZCAq overlay: sys-devel/just eselect repository enable dm9pZCAq && emerge --sync dm9pZCAq && emerge sys-devel/just - Various - Conda - just + Various + Conda + just conda install -c conda-forge just - Microsoft Windows - Chocolatey - just - choco install just + Microsoft Windows + Chocolatey + just + choco install just - Various - Snap - just - snap install --edge --classic just + Various + Snap + just + snap install --edge --classic just - Various - asdf - just - asdf plugin add just && asdf install just <version> + Various + asdf + just + asdf plugin add just && asdf install just <version> From 238c9ed81bfc7908cbced20e19cc8287901a5200 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:53:30 -0700 Subject: [PATCH 12/15] tweak --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 98c23d6a6c..ab21fc2ffb 100644 --- a/README.md +++ b/README.md @@ -189,7 +189,11 @@ You can also set the shell using command-line arguments. For example, to use Pow Gentoo Linux Portage dm9pZCAq overlay: sys-devel/just - eselect repository enable dm9pZCAq && emerge --sync dm9pZCAq && emerge sys-devel/just + + eselect repository enable dm9pZCAq + emerge --sync dm9pZCAq + emerge sys-devel/just + Various From 2d37a83cd3d423324a17a2c666de916a995ecea5 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:53:46 -0700 Subject: [PATCH 13/15] tweak --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ab21fc2ffb..894b054a90 100644 --- a/README.md +++ b/README.md @@ -190,8 +190,8 @@ You can also set the shell using command-line arguments. For example, to use Pow Portage dm9pZCAq overlay: sys-devel/just - eselect repository enable dm9pZCAq - emerge --sync dm9pZCAq + eselect repository enable dm9pZCAq
+ emerge --sync dm9pZCAq
emerge sys-devel/just From 46fb346d347ab8795626e5ed2ed902250be99e97 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:54:26 -0700 Subject: [PATCH 14/15] tweak --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 894b054a90..afe76a2d39 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ You can also set the shell using command-line arguments. For example, to use Pow Gentoo Linux Portage - dm9pZCAq overlay: sys-devel/just + dm9pZCAq/sys-devel/just eselect repository enable dm9pZCAq
emerge --sync dm9pZCAq
From 4cfffc0bf1d24c6becd99019d64271338ba83b92 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Tue, 26 Jul 2022 16:54:55 -0700 Subject: [PATCH 15/15] tweak --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index afe76a2d39..fedc429f31 100644 --- a/README.md +++ b/README.md @@ -217,7 +217,10 @@ You can also set the shell using command-line arguments. For example, to use Pow Various asdf just - asdf plugin add just && asdf install just <version> + + asdf plugin add just
+ asdf install just <version> +