The tutorial says:

> A terminal for every job
> 
> Using --tmux GNU parallel can start a terminal for every job run:
> 
>   seq 10 20 | parallel --tmux 'echo start {}; sleep {}; echo done {}'
> 
> This will tell you to run something similar to:
> 
>   tmux -S /tmp/tmsrPrO0 attach
> 
> Using normal tmux keystrokes (CTRL-b n or CTRL-b p) you can cycle between 
> windows of the running jobs. When a job is finished it will pause for 10 
> seconds before closing the window.
Is there a way to a) change that 10 second reap time ad
b) make parallel keep a pane (and the tmux session) for any
command that returns != 0?

thx


Reply via email to