How to set process group of a shell script ? Also I want all the child process to be in the same process group
I expect something similar to setpgid() in C.
|
How to set process group of a shell script ? Also I want all the child process to be in the same process group I expect something similar to setpgid() in C.
| ||||
feedback
|
|
Linux has a | ||||
|
feedback
|
|
I don't think Bourne, bash, or zsh will let you do that, but you could do it in perl using the built-in
You might think you could use perl from, say, bash to set the bash process's group (by passing Depending on what you're trying to do, the job control features in various shells may give you what you need, in a different way, like if you just want to detach from the terminal. | |||||||
feedback
|