From 510db4e9760325e1cf103a936fe04e10f17d0ccb Mon Sep 17 00:00:00 2001 From: Konstantin Dmitriev Date: Mon, 27 Jul 2009 18:56:41 +0700 Subject: [PATCH] synfigstudio-cph-monitor: Better detection for running synfigstudio. --- synfig-studio/trunk/synfigstudio-cph-monitor | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/synfig-studio/trunk/synfigstudio-cph-monitor b/synfig-studio/trunk/synfigstudio-cph-monitor index 7ca8461..6dcc2bc 100755 --- a/synfig-studio/trunk/synfigstudio-cph-monitor +++ b/synfig-studio/trunk/synfigstudio-cph-monitor @@ -118,18 +118,13 @@ dumpstats() mainloop() { while true; do - export PS=$(ps -f -u `whoami`) - if ( ( echo "$PS" |egrep "synfigstudio$" >/dev/null ) || ( echo "$PS" | egrep "synfigstudio " >/dev/null ) ) ; then + if ( ps --no-headers -f -Csynfigstudio |egrep "^`whoami`" > /dev/null ) ; then #synfigstudio process exist if [[ $STARTED == 0 ]]; then STARTED=1 RUNTIME=0 #get version - if ( echo "$PS" |egrep "synfigstudio$" >/dev/null ) ; then - P=$( echo "$PS" |egrep "synfigstudio$"| tr -s ' '| cut -d ' ' -f 8) - else - P=$( echo "$PS" |egrep "synfigstudio "| tr -s ' '| cut -d ' ' -f 8) - fi + P=$(ps --no-headers -f -Csynfigstudio |egrep "^`whoami`" | tr -s ' '| cut -d ' ' -f 8) echo if [ ! -e $P ]; then P=`which $P` -- 2.7.4