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.
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