Without root access:
ps | grep keywords | grep -v grep | head -1 | awk '{print $2}'
With rooted phone and busybox:
su -c busybox ps | grep keywords | grep -v grep | head -1 | awk '{print $1}'
Never, never, never give up!
Without root access:
ps | grep keywords | grep -v grep | head -1 | awk '{print $2}'
With rooted phone and busybox:
su -c busybox ps | grep keywords | grep -v grep | head -1 | awk '{print $1}'