Re: bash unresponsive after Ctrl-Z interrupts a backquoted command

2008-07-02 Thread Chet Ramey
Bruno Haible wrote: Hi, This command takes about 2 seconds to complete (on a slow machine; you can make it a triple loop for a faster machine): foo=`rm -f empty; touch empty; \ for a in 0 1 2 3 4 5 6 7 8 9 ; do \ for b in 0 1 2 3 4 5 6 7 8 9 ; do \ echo g$a$b | cat; \

bash unresponsive after Ctrl-Z interrupts a backquoted command

2008-06-29 Thread Bruno Haible
Hi, This command takes about 2 seconds to complete (on a slow machine; you can make it a triple loop for a faster machine): foo=`rm -f empty; touch empty; \ for a in 0 1 2 3 4 5 6 7 8 9 ; do \ for b in 0 1 2 3 4 5 6 7 8 9 ; do \ echo g$a$b | cat; \ done; \ done |