How exactly does bash handle job IDs? If I run the following:
sleep 10 &
sleep 60 &
and then when sleep 10 terminates, and run sleep 7 & again, the third job gets ID of 3 and not 1. Does the job ID number only reset back to the last stopped job number (or 0 if non are stopped)? Also, does the job ID increment for each and every job? For example, if I run a built-in command like fg, would it increment the job ID?
My second question is, how are process groups assigned? Is it each process in the same job have the same process group ID?