The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
418 views

Trapping CHLD signal - ZSH works but ksh/bash/sh don't?

Here's a sample code where a shell script launches a few jobs in the background and upon receiving the CHLD signal (i.e. the child process termination) it will take some actions... The problem is that ...
1
vote
1answer
1k views

bash restart sub-process using trap SIGCHLD?

I've seen monitoring programs either in scripts that check process status using 'ps' or 'service status(on Linux)' periodically, or in C/C++ that forks and wait on the process... I wonder if it is ...