updated README with new install method

main
czoczo 9 months ago
parent 36f8048143
commit c84ee70784
  1. 10
      README.md

@ -14,11 +14,11 @@
## Install: ## Install:
with curl with curl
``` ```
curl https://cz0.cz/getbb | bash && . ~/.bashrc curl -s https://cz0.cz/getbb | bash && . ~/.bashrc
``` ```
with wget with wget
``` ```
curl https://cz0.cz/getbb | bash && . ~/.bashrc wget -q -O - https://cz0.cz/getbb | bash && . ~/.bashrc
``` ```
with openssl (no dependencies needed) with openssl (no dependencies needed)
``` ```
@ -27,13 +27,15 @@ echo -e "GET /getbb HTTP/1.1\r\nHost: cz0.cz\r\nConnection: close\r\n\r\n" \
| sed '1,/^\r$/d' | bash && . ~/.bashrc | sed '1,/^\r$/d' | bash && . ~/.bashrc
``` ```
## Uninstall: ## Uninstall:
bash session needs a restart in order to uninstall to take effect.
with curl with curl
``` ```
curl https://cz0.cz/removebb | bash curl -s https://cz0.cz/removebb | bash
``` ```
with wget with wget
``` ```
curl https://cz0.cz/removebb | bash wget -q -O - https://cz0.cz/removebb | bash
``` ```
with openssl (no dependencies needed) with openssl (no dependencies needed)
``` ```

Loading…
Cancel
Save