From: Konstantin Dmitriev Date: Mon, 27 Jul 2009 11:56:41 +0000 (+0700) Subject: synfigstudio-cph-monitor: Better detection for running synfigstudio. X-Git-Url: https://git.pterodactylus.net/?p=synfig.git;a=commitdiff_plain;h=510db4e9760325e1cf103a936fe04e10f17d0ccb synfigstudio-cph-monitor: Better detection for running synfigstudio. --- 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`