12

What are some tricks for avoiding bash history being logged in a fascist logging environment that does not involve modifying .bashrc or deleting content from within the history file?

Kusalananda
  • 333,661

3 Answers3

11

One possible solution is to stop logging bash history is:

set +o history

and to reset, that is to start logging again:

set -o history
easl
  • 2,008
7

I guess you have .bash_profile, and this startup file calling .bashrc? Do you have write permission on .bash_profile?

Otherwise, if you just don't want to log some commands, run

$ unset HISTFILE

then all commands afterwards won't be logged within that session.

Jeff Schaller
  • 67,283
  • 35
  • 116
  • 255
Shâu Shắc
  • 948
  • 1
  • 10
  • 12
3

On stackoverflow they had some decent answers:

  • Add a space to your command.
  • Add [ \t]* to HISTIGNORE
  • Add ignorespace to your HISTCONTROL environment variable

Although not all of them may apply for your situation, those seems like the only options.

chrisjlee
  • 8,523
  • 1
    It's important to note that HISTIGNORE/HISTCONTROL stop commands from being added to the history list. This probably keeps them from being logged, too, but it also makes them impossible to access with normal history keys (like up and down arrow, ctrl-R, etc.) So if you're used to editing and repeating previously typed commands, these settings are really annoying. – rici Jul 27 '13 at 04:08
  • 1
    Adding a space specifically requires the first character to be a space, right? – phs Jul 28 '13 at 00:49
  • @phs yes - see http://unix.stackexchange.com/questions/115917/why-is-bash-not-storing-commands-that-start-with-spaces – Simon D Jul 26 '16 at 16:23