Re: core/loop vi mode when '.' used to repeat a replace

2006-03-06 Thread Chet Ramey
[EMAIL PROTECTED] wrote: > Bash Version: 3.1 > Patch Level: 11 > Release Status: release > > Description: > I've noticed that if I use ',' to repeat a substitution > in vi-mode, bash either dumps core or goes into a hard > loop. > > Repeat-By: > Any command should do, I u

Re: quoting inside backquotes in 3.1

2006-03-06 Thread Eric Blake
> > Your interpretation has evolved. Consider > http://lists.gnu.org/archive/html/bug-bash/2005-07/msg00047.html > when you argue seemingly the exact opposite: that quoted strings should > be recursively parsed inside ``. Perhaps it has. But in that mail from last year, the string in question w

Re: How to suppress async messages for background jobs

2006-03-06 Thread Francesco Montorsi
Chet Ramey ha scritto: Francesco Montorsi wrote: Hi, when using & at the end of a command, bash prints messages like: [EMAIL PROTECTED]:~$ kwrite & =>[1] 20986 [EMAIL PROTECTED]:~$ =>[1]+ Donekwrite [EMAIL PROTECTED]:~$ is there a way to tell bash not to print thos

Re: Failure of removing pattern.

2006-03-06 Thread Chet Ramey
[EMAIL PROTECTED] wrote: > Bash Version: 3.1 > Patch Level: 0 > Release Status: release > > Description: > A refference to a shell variable doesn't work under specific case. > The result of the following operations isn't shown and prompt doesn't > return when environment v

Re: trap handler scope wrong?

2006-03-06 Thread Chet Ramey
Phillip Susi wrote: > I ran into something weird the other day, but I'm not sure if it's a bug > or not since I'm a bit new to bash shell scripting. Basically I have a > script that has structure like this: > > set -e > trap "cat $LOGFILE" ERR > { > foo > bar > baz > } > $LOGFILE 2>&1 > > If