Re: workaround to not overwrite .bash_history

2006-07-10 Thread Software Groups
Hi all, I use BASH shell for my work. I have following setting to store BASH history to file; this works Solaris 10 with bash 3.0. But with Fedora Linux 5 with bash 3.1 its not working I type command on one screen window (window number 1). Then I can switch to another screen windows (window num

Re: workaround to not overwrite .bash_history

2006-06-13 Thread cga2000
On Tue, Jun 13, 2006 at 06:52:57PM EDT, Aaron Griffin wrote: > You might be able to get by with something like: > > export PROMPT_COMMAND="history -a $HISTFILE" > this appends the current session's history list to the history file. Since the OP wants to share the history across sessions I assume

Re: workaround to not overwrite .bash_history

2006-06-13 Thread Aaron Griffin
You might be able to get by with something like: export PROMPT_COMMAND="history -a $HISTFILE" ___ screen-users mailing list screen-users@gnu.org http://lists.gnu.org/mailman/listinfo/screen-users

Re: workaround to not overwrite .bash_history

2006-06-12 Thread Adam Lazur
Henrique Niwa ([EMAIL PROTECTED]) said: > I would like to unify my .bash_history around the > windows that screen creates. What i want is just bash > adding lines to the bash history, without creating > separate histories, because that is what it seems to > do, every window has its own history. > A

Re: workaround to not overwrite .bash_history

2006-06-12 Thread Michael Parson
On Mon, Jun 12, 2006 at 11:22:48AM -0500, Michael Parson wrote: > On Mon, Jun 12, 2006 at 01:34:06PM +, Henrique Niwa wrote: > >> hi, I would like to unify my .bash_history around the windows that >> screen creates. What i want is just bash adding lines to the bash >> history, without creating

Re: workaround to not overwrite .bash_history

2006-06-12 Thread Michael Parson
On Mon, Jun 12, 2006 at 01:34:06PM +, Henrique Niwa wrote: > hi, > I would like to unify my .bash_history around the > windows that screen creates. What i want is just bash > adding lines to the bash history, without creating > separate histories, because that is what it seems to > do, every wi

Re: workaround to not overwrite .bash_history

2006-06-12 Thread Juergen Weigert
On Jun 12, 06 13:34:06 +, Henrique Niwa wrote: > hi, > I would like to unify my .bash_history around the > windows that screen creates. What i want is just bash > adding lines to the bash history, without creating > separate histories, because that is what it seems to > do, every window has its

workaround to not overwrite .bash_history

2006-06-12 Thread Henrique Niwa
hi, I would like to unify my .bash_history around the windows that screen creates. What i want is just bash adding lines to the bash history, without creating separate histories, because that is what it seems to do, every window has its own history. Anybody has any trick to do this? __