all repos — shredmaster @ ce342cd3681bfb5efd6c875b04ba3a2c53afc5a8

script for wiping a bunch of drives at once

supress output of kill for PID query
Derek Stevens drkste@zoho.com
commit

ce342cd3681bfb5efd6c875b04ba3a2c53afc5a8

parent

c193f910379598a780a10ef1fa1a0e05a712dd93

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M shredder.shshredder.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