From horos11 at gmail.com Fri Aug 7 04:30:16 2009 From: horos11 at gmail.com (Edward Peschko) Date: Thu, 6 Aug 2009 18:30:16 -0700 Subject: manually saving history files Message-ID: <5cfa99000908061830j76127djde4fcf58d583f15e@mail.gmail.com> All, A simple question - suppose I have multiple tcsh sessions sharing the same 'hist' file.. Is there a way to manually dump the history of one (and reload it in the others), so the others will see it? Or is the only way to get at the history by starting a new session? Thanks much, Ed From kimmo at suominen.com Fri Aug 7 08:14:49 2009 From: kimmo at suominen.com (Kimmo Suominen) Date: Fri, 7 Aug 2009 08:14:49 +0300 Subject: manually saving history files In-Reply-To: <5cfa99000908061830j76127djde4fcf58d583f15e@mail.gmail.com> References: <5cfa99000908061830j76127djde4fcf58d583f15e@mail.gmail.com> Message-ID: See the "history" command in the tcsh manual page, especially the -S, -L and -M switches. + Kimmo On Fri, Aug 7, 2009 at 04:30, Edward Peschko wrote: > All, > > A simple question - suppose I have multiple tcsh > sessions sharing the same 'hist' file.. Is there a > way to manually dump the history of one (and reload > it in the others), so the others will see it? > Or is the only way to get at the history by > starting a new session? > > Thanks much, > > Ed > > _______________________________________________ > Tcsh mailing list > Tcsh at mx.gw.com > http://mx.gw.com/mailman/listinfo/tcsh > From christos at zoulas.com Fri Aug 7 15:30:55 2009 From: christos at zoulas.com (Christos Zoulas) Date: Fri, 7 Aug 2009 08:30:55 -0400 Subject: manually saving history files In-Reply-To: <5cfa99000908061830j76127djde4fcf58d583f15e@mail.gmail.com> from Edward Peschko (Aug 6, 6:30pm) Message-ID: <20090807123055.5FB155654E@rebar.astron.com> On Aug 6, 6:30pm, horos11 at gmail.com (Edward Peschko) wrote: -- Subject: manually saving history files | All, | | A simple question - suppose I have multiple tcsh | sessions sharing the same 'hist' file.. Is there a | way to manually dump the history of one (and reload | it in the others), so the others will see it? | Or is the only way to get at the history by | starting a new session? You can use history -S and history -L It is all in th man page. christos From vcrhonek at redhat.com Mon Aug 24 18:07:01 2009 From: vcrhonek at redhat.com (Vitezslav Crhonek) Date: Mon, 24 Aug 2009 11:07:01 -0400 (EDT) Subject: colorls variables In-Reply-To: <254449331.166461251126335558.JavaMail.root@zmail05.collab.prod.int.phx2.redhat.com> Message-ID: <805053731.166731251126421165.JavaMail.root@zmail05.collab.prod.int.phx2.redhat.com> Hi, Every time when coreutils brings new colorls variable, tcsh emits warning message like: Unknown colorls variable `xy'. The shell starts then, but custom .login and .tcshrc files do not get executed! I believe that unknown colorls variable should be ignored or the error procedure should be changed to just emit warning (to let user know that something should be fixed) and continue without invoking error (see attached patch). What do you think? Best regards, Vitezslav Crhonek --- tw.color.c_old 2009-08-24 16:57:26.000000000 +0200 +++ tw.color.c 2009-08-24 16:57:56.000000000 +0200 @@ -243,7 +243,7 @@ continue; } else - stderror(ERR_BADCOLORVAR, v[0], v[1]); + xprintf("Unknown colorls variable `%c%c'.\n", v[0], v[1]); } break; }