From 661aa56818c3bc0c83de350aee2aa61ebb3b570c Mon Sep 17 00:00:00 2001 From: Peter Palaga Date: Thu, 30 Jul 2020 13:48:22 +0200 Subject: [PATCH] Comment the numbers in the shell listing so that the listing can be copied executed without further editing --- README.adoc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.adoc b/README.adoc index 9a1b0fd1..a17d4c02 100644 --- a/README.adoc +++ b/README.adoc @@ -8,11 +8,11 @@ If you are on Linux or Mac, you can use the following shell commands. On Windows [source,shell] ---- -cd ~/bin <1> -os=$(uname | tr '[:upper:]' '[:lower:]') <2> -curl https://github.com/mvndaemon/mvnd/releases/latest/download/mvnd-${os}-amd64 -o mvnd <3> -chmod +x mvnd <4> -mvnd --install <5> +cd ~/bin # <1> +os=$(uname | tr '[:upper:]' '[:lower:]') # <2> +curl https://github.com/mvndaemon/mvnd/releases/latest/download/mvnd-${os}-amd64 -o mvnd # <3> +chmod +x mvnd # <4> +mvnd --install # <5> ---- <1> Change to `~/bin` or any other location already included in `PATH`; otherwise, you'll need to add `mvnd` to `PATH` manually