Re: bash crashes with named pipes

2010-12-10 Thread Chet Ramey
On 6/11/10 5:10 PM, Kevin wrote: > Maybe I'm doing something wrong, but the following will make bash > crash. > > > terminal 2: > $ mkfifo test > $ while true; do echo foo && sleep 1; done > test > > terminal 1: > $ > wait for a few "foo"s to be printed and then kill with ctrl-c > terminal 2 w

bash crashes with named pipes

2010-12-09 Thread Kevin
Maybe I'm doing something wrong, but the following will make bash crash. terminal 2: $ mkfifo test $ while true; do echo foo && sleep 1; done > test terminal 1: $