How do I close a terminal without saving the history?

More than once I’ve accidentally run a number of commands and polluted my bash history. How do I close my terminal without saving my bash history? I’m using Fedora.

Answers:

Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.

Method 1

Short answer:

Type this at the prompt:

kill -9 $$

This will kill your shell right away without the shell being able to do anything such as trap the signal, save history, execute ~/.bash_logout, warn about stopped jobs, or any of that good stuff.

Long answer:

Note: These options are not mutually exclusive; they can be all used at once.

Option 1:

If you’re a perfectionist when it comes to cluttering up your history file, then what you can do is modify the HISTIGNORE variable to include globs of commands you don’t want recorded. For instance, if you add HISTIGNORE='ls*:cd*' to your ~/.bashrc then any instance of ls and cd aren’t inserted into your history file.

Option 2:

If you want to control on a command-by-command basis what commands get left out of your history, you can set HISTCONTROL='ignorespace' which will omit any command lines starting with a space. Using ignoreboth will also omit repeated lines. Then, hitting the space bar before you enter a command will cause it to not show up in your history file.

Option 3:

If you just want to make it so when you close the terminal the shell exits immediately, you can trap the signal the terminal program sends the shell (xterm, for instance sends SIGHUP then waits for the shell to exit) and make exit without saving the history when it receives this signal. Add this to your ~/.bashrc:

# don't record history when the window is closed
trap 'unset HISTFILE; exit' SIGHUP

Method 2

Your shell’s history is saved in the file indicated by the HISTFILE variable. So:

unset HISTFILE

This also applies to zsh, but not to ksh which keeps saving to the file indicated by $HISTFILE when the shell starts (and conversely, you decide to save your history in ksh once you’ve started the shell).

Method 3

I’m surprised to see no one has suggested history -c immediately prior to exit. IINM (I’m no expert) that will do nicely.

Method 4

There are two environment variables that bash uses to determine the history file and how many lines to write to it when the shell exits.

You can throw away your session’s history with either of these (set during the session you want to omit from your history file):

HISTFILE=/dev/null

or

HISTSIZE=0

Either of these work fine in Bash on Fedora

Method 5

Not sure why you care about your command history so much. If you need certain commands often, you might have more fun if you define aliases for them so you can get them back with two keystrokes rather than having to look for them in the history.

Method 6

  1. Eli already gave you the correct answer for Bash which is to set HISTSIZE=0.
  2. I would just add the method to do it for GNU screen. Press Ctrl+A (screen escape sequence) followed by :scrollback 0. This will delete scroll-back history. Now you can immediately do :scrollback 15000 to reset scroll-back buffer size.


All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0

0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x