On Wednesday, December 4, 2013 7:03:40 AM UTC-8, allan...@gmail.com wrote:
> On Thursday, July 17, 2008 11:42:57 PM UTC-4, Chet Ramey wrote:
>
> > LynnOS wrote:
>
> > > Thanks ,but after I export PWD,the problem doesn't go
>
> >
>
> > As I explained previously, this is not a bash problem. Thi
From: pnewm
To: bug-bash@gnu.org
Subject: Latest fix for DEBUG makes pipes not work when trap is used
Configuration Information [Automatically generated, do not change]:
Machine: i686
OS: linux-gnu
Compiler: gcc
Compilation CFLAGS: -DPROGRAM='bash' -DCONF_HOSTTYPE='i686'
-DCONF_OSTYPE='linux-gn
When rmail isn't installed, bashbug makes a dead.bashbug file and prints
an error message saying rmail isn't installed. That error message could
include this mailing list address to make error reporting easier instead
of the end user having to search for somewhere to post it.
On 2/28/14 2:48 AM, Moe Tunes wrote:
> Machine Type: i686-pc-linux-gnu
>
> Bash Version: 4.3
> Patch Level: 0
> Release Status: release
>
> Description:
> Pipes stop working in this version when DEBUG is used with trap in an
> interactive shell
>
> Repeat-By:
> pgas | # bash -c 'trap :
On 2/28/14 7:36 AM, Moe Tunes wrote:
> When rmail isn't installed, bashbug makes a dead.bashbug file and prints an
> error message saying rmail isn't installed. That error message could
> include this mailing list address to make error reporting easier instead of
> the end user having to search for
On 2/28/14 2:48 AM, Moe Tunes wrote:
> Machine Type: i686-pc-linux-gnu
>
> Bash Version: 4.3
> Patch Level: 0
> Release Status: release
>
> Description:
> Pipes stop working in this version when DEBUG is used with trap in an
> interactive shell
It turns out that this is Linux-specific only
This works fine:
dualbus@debian:~$ ~/local/bin/bash -s <<< 'for i in . .; do (~/local/bin/bash
-mic ": & wait") ; done'
[1] 1629
[1]+ Done:
[1] 1631
[1]+ Done:
-
This does not:
dualbus@debian:~$ ~/local/bin/bash -s <<< 'for i in . .; do (~/local/bin
Configuration Information [Automatically generated, do not change]:
Machine: x86_64
OS: linux-gnu
Compiler: gcc
Rompilation CFLAGS: -DPROGRAM='bash' -DCONF_HOSTTYPE='x86_64'
-DCONF_OSTYPE='linux-gnu' -DCONF_MACHTYPE='x86_64-unknown-linux-gnu'
-DCONF_VENDOR='unknown' -DLOCALEDIR='/home/nbah/shar
On 2/28/14, 4:50 PM, NBaH wrote:
> Bash Version: 4.3
> Patch Level: 0
> Release Status: release
>
> Description:
>
> $ var="foo bar"
> $ declare -n nameref=var
> $ echo "${!nameref} = $nameref"
> var = foo bar
> $ test -R nameref && echo ok || echo ko
> bash: test: -R: unary operator expected
>