From 1a34de97cc19cc62eb3479f317383803995f122a Mon Sep 17 00:00:00 2001 From: cschantz Date: Tue, 11 Nov 2025 17:58:49 -0500 Subject: [PATCH] Add option to disable history before running curl command --- README.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e5f2306..79690a0 100644 --- a/README.md +++ b/README.md @@ -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