Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I notice that when opening .bash_history that it contains only the entries from my previous session, it seems that the current session is appended only on exit. Is there any way to prevent the current session from saving? Even crashing bash is an option if one knows how to do that. I found that I can kill -9 the process, but if there is a better way I would love to know.

Thanks.

share|improve this question
A hackish way to accomplish this is to use kill -9 $$. By sending your terminal a SIGKILL, it doesn't get a chance to write to the history file. – jordanm Jan 28 '12 at 1:49

3 Answers

up vote 7 down vote accepted

Perhaps more elegant than crashing bash would be to use the history -c command to clear the history of the current session. Then, there's nothing to save (it even wipes itself from the history).

share|improve this answer
That would also nuke the histfile contents. – Michael Krelin - hacker Jan 27 '12 at 19:49
1  
It doesn't for me. Maybe it changed at some point? I'm using bash 4.2. – FatalError Jan 27 '12 at 19:52
3  
yes, it nukes the history for 3.2 and doesn't for 4.2 – Michael Krelin - hacker Jan 27 '12 at 20:05
Thanks, this does seem to be the cleanest method! – dotancohen Jan 28 '12 at 8:26

Unset the $HISTFILE variable

$ unset HISTFILE

If HISTFILE is unset, or if the history file is unwritable, the history is not saved.
http://www.faqs.org/docs/bashman/bashref_106.html

share|improve this answer
Thanks, this is good for Bash versions that nuke the whole history on -c. – dotancohen Jan 28 '12 at 8:29
didn't work for me – RSFalcon7 Apr 12 at 19:49

That should do:

HISTFILE=

unset the HISTFILE.

share|improve this answer
Thank you, this works and I will use it for older Bash on some outdated servers. – dotancohen Jan 28 '12 at 8:28
didn't work for me – RSFalcon7 Apr 18 at 17:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.