On Fri, Nov 1, 2013 at 12:24 PM, Ole Tange <[email protected]> wrote: > Especially if you find a way to make 'zenity' read the stderr, while > the stdout can be passed to, say, wc. This does not work: > > seq 808 | src/parallel --bar '(echo {};sleep 0.1)' 2>(zenity --progress) | > wc
This works:
seq 1000 | src/parallel -j30 --bar '(echo {};sleep 0.1)' 2> >(zenity
--progress --auto-kill) | wc
/Ole
