From 009648fcc2606107054b39ddf6dd44a7bd49e336 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet <61157623+ErrorNoInternet@users.noreply.github.com> Date: Fri, 16 Jul 2021 14:24:10 +0800 Subject: [PATCH 1/2] Update README.md --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index efb070a..860173a 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ This is a command that simply prints "ok" onto your screen whenever you run the ## Installation (Linux) Download the latest release into your Downloads folder and open a shell. ``` -chmod 777 ~/Downloads/ok -sudo cp ~/Downloads/ok /usr/bin/ok +chmod +x ~/Downloads/ok +sudo cp ~/Downloads/ok /usr/bin/ ``` ## Installation (Windows) @@ -18,10 +18,8 @@ Download `ok.exe` from the releases tab and copy it to any folder in `%PATH%` (f ## Installation (Android) Download `ok-aarch64` from v1.4.1-termux into your downloads folder and open Termux. ``` -cd -cp storage/downloads/ok-aarch64 ./ok -chmod 777 ok -alias ok=./ok +cd && cp storage/downloads/ok-aarch64 ./ok +chmod 777 ok && alias ok=./ok ``` -------------------- From 2d32471c87477dec1ff58279acc07fc9cb1aa126 Mon Sep 17 00:00:00 2001 From: ErrorNoInternet <61157623+ErrorNoInternet@users.noreply.github.com> Date: Fri, 16 Jul 2021 19:10:48 +0800 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 860173a..08dda3d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This is a command that simply prints "ok" onto your screen whenever you run the ## Installation (Linux) Download the latest release into your Downloads folder and open a shell. -``` +```sh chmod +x ~/Downloads/ok sudo cp ~/Downloads/ok /usr/bin/ ``` @@ -17,7 +17,7 @@ Download `ok.exe` from the releases tab and copy it to any folder in `%PATH%` (f ## Installation (Android) Download `ok-aarch64` from v1.4.1-termux into your downloads folder and open Termux. -``` +```sh cd && cp storage/downloads/ok-aarch64 ./ok chmod 777 ok && alias ok=./ok ```