adb command to monitor if an application is running
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APPLICATION_ID=$1 | |
while [ 1 ]; | |
do processid=`adb -d shell ps |egrep $APPLICATION_ID|sed -e 's/^[^ ]* *\([0-9]*\) .*$/\1/'` | |
echo -n "$processid." | |
sleep 1 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment