updated README with new install method

main
czoczo 9 months ago
parent 96d9087718
commit 36f8048143
  1. 12
      README.md

@ -14,30 +14,30 @@
## Install: ## Install:
with curl with curl
``` ```
curl https://cz0.cz/getbb | sh && . ~/.bashrc curl https://cz0.cz/getbb | bash && . ~/.bashrc
``` ```
with wget with wget
``` ```
curl https://cz0.cz/getbb | sh && . ~/.bashrc curl https://cz0.cz/getbb | bash && . ~/.bashrc
``` ```
with openssl (no dependencies needed) with openssl (no dependencies needed)
``` ```
echo -e "GET /getbb HTTP/1.1\r\nHost: cz0.cz\r\nConnection: close\r\n\r\n" \ 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 \ | openssl s_client -quiet -connect cz0.cz:443 2>/dev/null \
| sed '1,/^\r$/d' | sh && . ~/.bashrc | sed '1,/^\r$/d' | bash && . ~/.bashrc
``` ```
## Uninstall: ## Uninstall:
with curl with curl
``` ```
curl https://cz0.cz/removebb | sh && . ~/.bashrc curl https://cz0.cz/removebb | bash
``` ```
with wget with wget
``` ```
curl https://cz0.cz/removebb | sh && . ~/.bashrc curl https://cz0.cz/removebb | bash
``` ```
with openssl (no dependencies needed) with openssl (no dependencies needed)
``` ```
echo -e "GET /removebb HTTP/1.1\r\nHost: cz0.cz\r\nConnection: close\r\n\r\n" \ 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 \ | openssl s_client -quiet -connect cz0.cz:443 2>/dev/null \
| sed '1,/^\r$/d' | sh && . ~/.bashrc | sed '1,/^\r$/d' | bash
``` ```

Loading…
Cancel
Save