feat: Update toggle-website-blocking script to use curl or wget for downloading and running the script

This commit is contained in:
Christopher
2024-06-01 14:06:59 -05:00
parent 9da3308074
commit bbd207a513

View File

@@ -1,7 +1,13 @@
# Run command
```bash
bash -c "$(wget -qLO - https://raw.githubusercontent.com/bigbeartechworld/big-bear-scripts/master/toggle-website-blocking/run.sh)"
curl -s https://raw.githubusercontent.com/bigbeartechworld/big-bear-scripts/master/toggle-website-blocking/run.sh | sudo bash
```
OR
```bash
wget -qO- https://raw.githubusercontent.com/bigbeartechworld/big-bear-scripts/master/toggle-website-blocking/run.sh | sudo bash
```
## About