HowTo: Clear BASH History

Sometimes you don’t want to leave Bash history, because it may contain some sensitive data like passwords.

This article may help you to control your Bash history file.

Clear Bash history completely

Type the following command to clear all your Bash history:

$ history -cw
OptionDescription
-c Clear the history list
-w Write out the current history to the history file

Remove a certain line from Bash history

Type the following command to remove a certain line (e.g. 352) from the Bash history file:

$ history -dw 352
OptionDescription
-d Delete specified line from the history

Clear current session history

Type the following command to clear the Bash history of the current session only:

$ history -r
OptionDescription
-r Read the current history file and append its contents to the history list

Don’t save command in Bash history

Execute a command without saving it in the Bash history:

$ <space>command

Put a space in front of your command and it won’t be saved in the Bash history.

Don’t save commands in Bash history for current session

Unsetting HISTFILE will cause any commands that you have executed in the current shell session not to be written in your bash_history file upon logout:

$ unset HISTFILE
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
How to get a password from a shell script without echoing - solutions
Viewed 13934 times since Fri, Feb 22, 2019
30 Examples for Awk Command in Text Processing
Viewed 15409 times since Sat, Nov 24, 2018
Epoch & Unix Timestamp Conversion Tools
Viewed 62995 times since Fri, Jun 22, 2018
Linux / UNIX: Convert Epoch Seconds To the Current Time
Viewed 3121 times since Fri, May 25, 2018
Using Shell Redirection: All About the Here-Doc
Viewed 10496 times since Wed, May 30, 2018
Bash: String Length – How To Find Out
Viewed 2281 times since Mon, Feb 18, 2019
Utilities to Tidy Up Your Reports
Viewed 16355 times since Wed, May 30, 2018
10 Xargs Command Examples in Linux / UNIX
Viewed 4020 times since Fri, Jun 1, 2018
How to sort IP addresses in Linux
Viewed 4022 times since Thu, May 24, 2018
Display basic information about Physical Volumes
Viewed 3532 times since Sun, Jun 3, 2018