From 70969843746505099d0aa7fd32809d4b7220761d Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 16 Apr 2015 11:37:49 +0100 Subject: [PATCH] tmuxwc improvement --- functions/fn_monitor | 2 +- functions/fn_validate | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/fn_monitor b/functions/fn_monitor index f5e7890a4..be77fd6f7 100644 --- a/functions/fn_monitor +++ b/functions/fn_monitor @@ -76,7 +76,7 @@ if [ "${updatecheck}" = "0" ]||[ "${gamename}" == "Unreal Tournament 99" ]||[ "$ fn_printdots "Checking session: CHECKING" fn_scriptlog "Checking session: CHECKING" sleep 1 - tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -E "^${servicename}:"|wc -l) + tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:") if [ "${tmuxwc}" -eq 1 ]; then fn_printok "Checking session: OK" fn_scriptlog "Checking session: OK" diff --git a/functions/fn_validate b/functions/fn_validate index bd15f441c..be9c51d31 100644 --- a/functions/fn_validate +++ b/functions/fn_validate @@ -29,7 +29,7 @@ fn_scriptlog "Checking complete" fn_check_root fn_check_systemdir -tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -E "^${servicename}:"|wc -l) +tmuxwc=$(tmux list-sessions 2>&1|awk '{print $1}'|grep -v failed|grep -Ec "^${servicename}:") if [ "${tmuxwc}" -eq 1 ]; then fn_stop fn_validation