When I run a bunch of background jobs with
for s in {1,2,3}; do command_$s &; done;
I can see all of them with the jobs
command
$ jobs
[2] running command_1
[3] - running command_2
[4] + running command_3
I know that the first column is the ID (I can for example kill -9 %2
to kill command_
)
But what does +
, -
and lack of any of those means? Running man jobs
and jobs -h
does not work.