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.
|
4
|
|||
|
|
|
So, this is all my history-related
Notice I do the Doing it in Tested with bash 3.2.17 on Mac OS X 10.5. |
|||
|
|
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 |
||
|
|
|
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. |
||
|
|
