Skip to content
Snippets Groups Projects
wait_client.sh 123 B
Newer Older
#/bin/bash

procname=$1
check=1
while [ $check -gt 0 ]
do
    check=`pgrep -u $USER -x $procname | wc -l`
    sleep 1
done