From ac319b07054fced2e016445ebce8f830c48b7540 Mon Sep 17 00:00:00 2001 From: cschantz Date: Tue, 11 Nov 2025 17:36:45 -0500 Subject: [PATCH] Add leading space to README download command Changes: - Add leading space before curl command in README - Add privacy tip explaining HISTCONTROL=ignorespace - Updated comment to indicate privacy feature Command now includes space to prevent history recording: curl -sL https://git.mull.lol/.../tar.gz | tar xz && ... --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index da58efd..3882681 100644 --- a/README.md +++ b/README.md @@ -75,10 +75,12 @@ server-toolkit/ ### Installation & Running ```bash -# Download and run in one command -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 +# Download and run in one command (with leading space to prevent history recording) + 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 ``` +> **Privacy Tip:** The leading space before `curl` prevents this command from being saved to bash history (works when `HISTCONTROL` includes `ignorespace`). + Or if already downloaded: ```bash bash /root/server-toolkit/launcher.sh