[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
>
> 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
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
[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
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