vote up 9 vote down star
3

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.

flag

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

3 Answers

vote up 7 vote down check

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

export HISTCONTROL=erasedups    # no duplicate entries
export HISTSIZE=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 -r; $PROMPT_COMMAND"

# set prompt to: [username@hostname:/directory] $
PS1="[\u@\h:\w] " 
case `id -u` in
      0) PS1="${PS1}# ";;
      *) PS1="${PS1}$ ";;
esac

Notice I do the history -a; history -r thing in PROMPT_COMMAND.

Doing it in PS1 like in Schof's answer didn't completely work for me.

Tested with bash 3.2.17 on Mac OS X 10.5.

link|flag
The PS1 trick didn't work on AIX either, but this did! +1 – Davide Oct 13 at 17:39
See my note on my answer; this answer works better. – Schof Oct 13 at 22:28
vote up 6 vote down

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|flag
kch's solution works better than mine does. I'm now using his solution in my .bashrc. – Schof Oct 13 at 22:28
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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