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
|
while true; do
|
||||||
for child in ${children}; do
|
for child in ${children}; do
|
||||||
if kill -0 ${child}; then
|
if kill -0 ${child} >/dev/null 2>&1; then
|
||||||
activeChildren="${activeChildren} ${child}"
|
activeChildren="${activeChildren} ${child}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue