supress output of kill for PID query
This commit is contained in:
parent
c193f91037
commit
ce342cd368
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ done
|
|||
|
||||
while true; do
|
||||
for child in ${children}; do
|
||||
if kill -0 ${child}; then
|
||||
if kill -0 ${child} >/dev/null 2>&1; then
|
||||
activeChildren="${activeChildren} ${child}"
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue