From 85488c3e3ad560e2ecc04a48d914019a75d8caba Mon Sep 17 00:00:00 2001 From: Joe Cooper Date: Sun, 25 Jun 2017 19:22:37 -0500 Subject: [PATCH] redirect kill to null --- slib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slib.sh b/slib.sh index fdb4023..91e317a 100644 --- a/slib.sh +++ b/slib.sh @@ -12,7 +12,7 @@ cleanup () { # Make super duper sure we reap all the spinners # This is ridiculous, and I still don't know why spinners stick around. if [ ! -z "$allpids" ]; then - kill "$allpids" + kill "$allpids" &>/dev/null fi } trap cleanup INT EXIT QUIT TERM