The commands executed in the terminal prefixed with blank space(s) are not recorded in the command history file. But is there a way to get the reverse i.e. the history should only record those which are prefixed with space?
2 Answers
You can reverse the default Ubuntu settings by setting two variables (HISTIGNORE an HISTCONTROL), use the commands like below:
HISTIGNORE='!( *)'
HISTCONTROL=ignoredups
HISTCONTROL=ignoredups
changes history behaviour to only ignore duplicate lines, and not ignore lines starting with a space. (You can also set HISTCONTROL to the empty string (with HISTCONTROL=
) if you do want to keep duplicates, but that is usually not wanted.)
HISTIGNORE='!( *)'
makes history ignore every line which doesn't start with a space: ( *)
would match every line starting with a space, but the leading !
negates the match, so it matches everything which doesn't start with a space. And everything what is matched by the HISTIGNORE pattern will be ignored by history. (This latter option requires that bash is run with extglob
turned on, with shopt -s extglob
, but that is the default setting on Ubuntu.)
If you want to make this permanent, don't forget to put the above two commands into your ~/.bashrc
.

- 15,026
- 3
- 48
- 68
"The commands executed in the terminal prefixed with blank space(s) are not recorded in the command history file"
Yes they are.

- 5,875
- 2
- 32
- 55
-
1
-
-
-
@AvinashRaj : yeah, see me command "this shouln't be recorded", I put a space (visible both in the command line and the history). So it doesn't work that way. Maybe you can configure it (with HISTCONTROL); but it isn't the case by default. – MrVaykadji Feb 20 '14 at 18:31
.bashrc
.. I needed that to prevent bash from recording everycd
s,ls
s and other everyday commands that I use; and for those few commands that I need in history, I can now use the prefix.. – rusty Feb 21 '14 at 04:05HISTIGNORE='ls*:cd*'
, that will make history ignore every line starting withls
orcd
, you can extend that list with other commands, just put a:
between the commands. But don't forget that the command recall feature which you can access by the "up arrow key" is also uses this history, so if you set something to be ignored, you won't be able to recall those ignored commands with the "up arrow". – falconer Feb 21 '14 at 07:15ssh-copy-id
orssh-keygen
. InHISTIGNORE
, I included "ssh\ *
" with my other ignored commands. Escaping the space char appears to be mandatory. – user38537 May 16 '17 at 04:03