From 36f80481431cfc01ef94581adc4c5a6d7061a6c5 Mon Sep 17 00:00:00 2001 From: czoczo Date: Mon, 24 Mar 2025 01:08:59 +0100 Subject: [PATCH] updated README with new install method --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 28c0a9f..14fad13 100644 --- a/README.md +++ b/README.md @@ -14,30 +14,30 @@ ## Install: with curl ``` -curl https://cz0.cz/getbb | sh && . ~/.bashrc +curl https://cz0.cz/getbb | bash && . ~/.bashrc ``` with wget ``` -curl https://cz0.cz/getbb | sh && . ~/.bashrc +curl https://cz0.cz/getbb | bash && . ~/.bashrc ``` with openssl (no dependencies needed) ``` echo -e "GET /getbb HTTP/1.1\r\nHost: cz0.cz\r\nConnection: close\r\n\r\n" \ | openssl s_client -quiet -connect cz0.cz:443 2>/dev/null \ -| sed '1,/^\r$/d' | sh && . ~/.bashrc +| sed '1,/^\r$/d' | bash && . ~/.bashrc ``` ## Uninstall: with curl ``` -curl https://cz0.cz/removebb | sh && . ~/.bashrc +curl https://cz0.cz/removebb | bash ``` with wget ``` -curl https://cz0.cz/removebb | sh && . ~/.bashrc +curl https://cz0.cz/removebb | bash ``` with openssl (no dependencies needed) ``` echo -e "GET /removebb HTTP/1.1\r\nHost: cz0.cz\r\nConnection: close\r\n\r\n" \ | openssl s_client -quiet -connect cz0.cz:443 2>/dev/null \ -| sed '1,/^\r$/d' | sh && . ~/.bashrc +| sed '1,/^\r$/d' | bash ```