l -33 $$)" &
fi
}
trap 'runq' 33
which works almost as intended...
Bob Proulx, 08/21/06 17:23:
Mårten Segerkvist wrote:
command1 &
%1 && command2 &
%2 && command3
(where the second command line awaits the execution of the first etc.)
In a sc
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 && c