supress output of kill for PID query
Derek Stevens drkste@zoho.com
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
shredder.sh
→
shredder.sh
@@ -44,7 +44,7 @@ # if so, everything is OK!
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