Bash Shell beenden ohne die History zu speichern (5 Methoden)
Manchmal ist es nützlich die History komplett oder nur anteilig zu löschen
Löscht nur die History der aktuellen Session und lässt die ältere History unberührt:
- Unset HISTFILE
unset HISTFILE && exit
- Kill Console
kill -9 $$
Löscht/Entfernt die Histroy komplett
- Clear History Option
history -c && exit
- Set HISTSIZE to 0 (zero)
HISTSIZE=0 && exit
- Delete HISTFILE and Unset HISTFILE
rm -f $HISTFILE && unset HISTFILE && exit