Don't know if this is the right place for this sort of thing, but is it somehow possible to do some sort of consecutive job processin in bash, i. e. being able to split a one-liner like:

command1 && command2 && command3

into several, separate command lines:

command1 &
%1 && command2 &
%2 && command3

(where the second command line awaits the execution of the first etc.)
Alternatively, would it be possible to write a queing-function (working similar as the printer queue) that works something like:

q command1
q command2
q command3

and then have bash execute the different jobs consecutive to each other?


_______________________________________________
Bug-bash mailing list
Bug-bash@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-bash

Reply via email to