Re: Bash crash bug

2016-06-02 Thread Chet Ramey
On 6/2/16 2:25 AM, konsolebox wrote: > On Thu, Jun 2, 2016 at 1:12 PM, Matthias Zimmerman > wrote: >> a better example is >> cat <(su) | cat >> cat <([a very simple program that will block io]) | (any thing else) $ cat <(sudo cat) | cat [sudo] password for chet: ^C $ cat <(sudo cat) | cat ^C $ ec

Re: Bash crash bug

2016-06-01 Thread konsolebox
On Thu, Jun 2, 2016 at 1:12 PM, Matthias Zimmerman wrote: > a better example is > cat <(su) | cat > cat <([a very simple program that will block io]) | (any thing else) Ok, it does crash. Next time, please send your message to bug-bash@gnu.org as well. -- konsolebox

Re: Bash crash bug

2016-05-28 Thread konsolebox
On Sun, May 29, 2016 at 1:17 PM, Matthias Zimmerman wrote: > I found a bug in bashes redirection? > anyway the recipe for disaster is, > > cat <(sudo {any command}) | {any other command} > > And if you ctl-C it/ try to kill it, bash will die What command do you use, and what version of bash? Min

Bash crash bug

2016-05-28 Thread Matthias Zimmerman
I found a bug in bashes redirection? anyway the recipe for disaster is, cat <(sudo {any command}) | {any other command} And if you ctl-C it/ try to kill it, bash will die