Use HISTFILE=/dev/null instead of leading space

Changes:
- Replace leading space with HISTFILE=/dev/null prefix
- More reliable - works on all systems
- Doesn't depend on HISTCONTROL settings

Command now prevents history recording universally
This commit is contained in:
cschantz
2025-11-11 17:39:16 -05:00
parent 746e559c16
commit 216a6198a1
+2 -2
View File
@@ -75,10 +75,10 @@ server-toolkit/
### Installation & Running
```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
HISTFILE=/dev/null 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
```
> **Tip:** Leading space prevents history recording (if `HISTCONTROL=ignorespace`).
> **Tip:** `HISTFILE=/dev/null` prevents this command from being saved to history (works on all systems).
Or if already downloaded:
```bash