Skip to content

Instantly share code, notes, and snippets.

@calvarez-ov
Created April 24, 2020 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save calvarez-ov/4ce81bb8b785f8ca5c2f9555c0803666 to your computer and use it in GitHub Desktop.
Save calvarez-ov/4ce81bb8b785f8ca5c2f9555c0803666 to your computer and use it in GitHub Desktop.
adb command to monitor if an application is running
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