up vote 41 down vote favorite
29
share [g+] share [fb]

Is it possible to share the same Bash history file instance amongst all the terminal windows in real time? I want commands executed in one window to be available to all other terminal windows without having to restart them.

link|improve this question

41% accept rate
Please consider marking kch's solution as the answer. Schof suggested it. – Will Bickford Oct 15 '09 at 18:30
feedback

7 Answers

up vote 34 down vote accepted

So, this is all my history-related .bashrc thing:

export HISTCONTROL=ignoredups:erasedups  # no duplicate entries
export HISTSIZE=100000                   # big big history
export HISTFILESIZE=100000               # big big history
shopt -s histappend                      # append to history, don't overwrite it

# Save and reload the history after each command finishes
export PROMPT_COMMAND="history -a; history -c; history -r; $PROMPT_COMMAND"

Tested with bash 3.2.17 on Mac OS X 10.5, bash 4.1.7 on 10.6.

edit: updated with history -c from lesmana's answer, which you should checkout too.

link|improve this answer
The PS1 trick didn't work on AIX either, but this did! +1 – Davide Oct 13 '09 at 17:39
See my note on my answer; this answer works better. – Schof Oct 13 '09 at 22:28
Hmm.. This kills the ability to use $ !34, as the command numbers change every prompt. Is there a workaround @Davide @Schof @kch? – Charles Merriam Mar 17 '10 at 19:33
Not really a workaround, but I certainly feel less the need to use history replacements by using the arrow keys for history search. That is, it search lines in history starting with whatever you typed so far. In .inputrc: "\e[B": history-search-forward "\e[A": history-search-backward – kch Mar 18 '10 at 0:33
2  
FYI None of the solutions mentioned here can solve the following problem. I have two shell windows A and B. In shell window A, I run sleep 9999, and (without waiting for the sleep to finish) in shell window B, I want to be able to see sleep 9999 in the bash history. – pts Mar 25 '11 at 13:43
show 3 more comments
feedback

Here is my attempt at Bash session history sharing. This will enable history sharing in a way that the history counter does not get mixed up and history expansion like !number will work with some constraints.

Using Bash version 4.1.5 under Ubuntu 10.04 LTS (Lucid Lynx).

HISTSIZE=9000
HISTFILESIZE=$HISTSIZE
HISTCONTROL=ignorespace:ignoredups

history() {
  _bash_history_sync
  builtin history "$@"
}

_bash_history_sync() {
  builtin history -a         #1
  HISTFILESIZE=$HISTFILESIZE #2
  builtin history -c         #3
  builtin history -r         #4
}

PROMPT_COMMAND=_bash_history_sync

Explanation:

The function history() overrides the builtin history to make sure that the history is synchronised before it is displayed. This is necessary for the history expansion by number (more about this later).

  1. Append the just entered line to the $HISTFILE (default is .bash_history). This will cause $HISTFILE to grow by one line.

  2. Setting the special variable $HISTFILESIZE to some value will cause Bash to truncate $HISTFILE to be no longer than $HISTFILESIZE by removing the oldest entries.

  3. Clear the history of the running session. This will reduce the history counter by the amount of $HISTSIZE.

  4. Read the contents of $HISTFILE and insert them in to the current running session history. this will raise the history counter by the amount of lines in $HISTFILE.

More explanation:

  • Step 1 ensures that the command from the current running session gets written to the global history file.

  • Step 4 ensures that the commands from the other sessions gets read in to the current session history.

  • Because step 4 will raise the history counter, we need to reduce the counter in some way. This is done in step 3.

  • In step 3 the history counter is reduced by $HISTSIZE. In step 4 the history counter is raised by the number of lines in $HISTFILE. In step 2 we make sure that the line count of $HISTFILE is exactly $HISTSIZE (this means that $HISTFILESIZE must be the same as $HISTSIZE).

About the constraints of the history expansion:

Generally, once you have more than one Bash session, there is no guarantee whatsoever that a history expansion by number will retain its value between two Bash prompt displays. Everytime PROMPT_COMMAND is executed some command from another Bash session may snuck in your current session history and then the history numbers will be different. That means you always have to look up the number immediately before using it. I find this constraint reasonable. I have to look the number up every time anyway because I can't remember arbitrary history numbers.

Usually I use the history expansion by number like this

$ history | grep something #note number
$ !number

I recommend using the following Bash options.

## reedit a history substitution line if it failed
shopt -s histreedit
## edit a recalled history line before executing
shopt -s histverify

Strange bugs:

Running the history command piped to anything will result that command to be listed in the history twice. For example:

$ history | head
$ history | tail
$ history | grep foo
$ history | true
$ history | false

All will be listed in the history twice. I have no idea why.

Ideas for improvements:

  • Modify the function _bash_history_sync() so it does not execute every time. For example it should not execute after a CTRL+C on the prompt. I often use CTRL+C to discard a long command line when I decide that I do not want to execute that line. Sometimes I have to use CTRL+C to stop a Bash completion script.

  • Commands from the current session should always be the most recent in the history of the current session. This will also have the side effect that a given history number keeps its value for history entries from this session.

link|improve this answer
Why not "history -n" (reload lines not already loaded) instead of "history -c; history -r" ? – Graham Sep 14 '11 at 20:40
@Graham: I did not want to use history -n because it messes up the history counter. Also, I found history -n to be too unreliable. – lesmana Sep 16 '11 at 12:02
feedback

You can edit your BASH prompt to run the "history -a" and "history -r" that Muerr suggested:

savePS1=$PS1

(in case you mess something up, which is almost guaranteed)

PS1=$savePS1`history -a;history -r`

(note that these are back-ticks; they'll run history -a and history -r on every prompt. Since they don't output any text, your prompt will be unchanged.

Once you've got your PS1 variable set up the way you want, set it permanently it in your ~/.bashrc file.

If you want to go back to your original prompt while testing, do:

PS1=$savePS1

I've done basic testing on this to ensure that it sort of works, but can't speak to any side-effects from running history -a;history -r on every prompt.

link|improve this answer
2  
kch's solution works better than mine does. I'm now using his solution in my .bashrc. – Schof Oct 13 '09 at 22:28
feedback

You can use history -a to append the current session's history to the histfile, then use history -r on the other terminals to read the histfile.

link|improve this answer
feedback

Bash only reads command history once. So history -r is needed in addition to history -a for scenerios if you have two shells running on one terminal and you want them to have the same command history for retriveing the past commands on the fly.

link|improve this answer
feedback

If you need a bash or zsh history synchronizing solution which also solves the problem below, then see it at http://ptspts.blogspot.com/2011/03/how-to-automatically-synchronize-shell.html

The problem is the following: I have two shell windows A and B. In shell window A, I run sleep 9999, and (without waiting for the sleep to finish) in shell window B, I want to be able to see sleep 9999 in the bash history.

The reason why most other solutions here won't solve this problem is that they are writing their history changes to the the history file using PROMPT_COMMAND or PS1, both of which are executing too late, only after the sleep 9999 command has finished.

link|improve this answer
feedback

After implementing kch's answer, some users might encounter a bug in bash 3.x. If you type a command, then comment it out (prepend a '#' to the line) intending to call it later, the call to 'history -r' in PROMPT_COMMAND filters it out of the history, so you cannot recall that command from the history. I would then have to scroll through my terminal to find the command and copy and paste it. Besides upgrading to bash 4 (which might not be a convenient option for some), you can maintain the practice of commenting out lines with kch's answer by prepending ':;#' instead of '#'.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.