Add option to disable history before running curl command

This commit is contained in:
cschantz
2025-11-11 17:58:49 -05:00
parent c956f83338
commit 1a34de97cc
+8 -3
View File
@@ -74,13 +74,18 @@ server-toolkit/
### Installation & Running
**Option 1: Standard (clean up after)**
```bash
curl -sL https://git.mull.lol/cschantz/Linux-Server-Management-Toolkit/archive/main.tar.gz | tar xz && cd linux-server-management-toolkit && bash launcher.sh
```
Then use exit menu cleanup (option 0, answer "yes").
**Privacy Options:**
- **Automatic:** When exiting the launcher (option 0), answer "yes" to cleanup prompt, then run the source command shown
- **Manual:** Use Tools menu → Toolkit Trace Eraser to remove all history/logs
**Option 2: Disable history first**
```bash
set +o history
curl -sL https://git.mull.lol/cschantz/Linux-Server-Management-Toolkit/archive/main.tar.gz | tar xz && cd linux-server-management-toolkit && bash launcher.sh
```
Run `set +o history` first on its own line, THEN run the curl command.
Or if already downloaded:
```bash