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.
feedback
|
|
So, this is all my history-related
Tested with bash 3.2.17 on Mac OS X 10.5, bash 4.1.7 on 10.6. edit: updated with | |||||||||||||
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 Using Bash version 4.1.5 under Ubuntu 10.04 LTS (Lucid Lynx).
Explanation:The function
More explanation:
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
I recommend using the following Bash options.
Strange bugs:Running the history command piped to anything will result that command to be listed in the history twice. For example:
All will be listed in the history twice. I have no idea why. Ideas for improvements:
| |||||
feedback
|
|
You can edit your BASH prompt to run the "history -a" and "history -r" that Muerr suggested:
(in case you mess something up, which is almost guaranteed)
(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:
I've done basic testing on this to ensure that it sort of works, but can't speak to any side-effects from running | |||||
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. | |||
|
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. | ||||
|
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 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 | |||
|
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 '#'. | |||
|
feedback
|