diff --git a/mm-scripts.sh b/mm-scripts.sh index 51f2578..180f008 100755 --- a/mm-scripts.sh +++ b/mm-scripts.sh @@ -579,9 +579,9 @@ MMSTOP(){ } FULLSTOP(){ echo -en "${idsCL[LightCyan]}Stopping background MM scripts... ${idsCL[Default]}" - getMMbash=$(pgrep -f '/mm') + getMMbash=$(pgrep -f '/mm') >/dev/null 2>&1 for i in $getMMbash; do - /bin/kill $i & + /bin/kill $i & >/dev/null 2>&1 done echo -e "${idsCL[Green]}Done${idsCL[Default]}" }