[script]Add adbkill

This commit is contained in:
Mathieu Maret 2015-07-07 14:16:01 +02:00
parent b4d56d74dc
commit 299de4078f
1 changed files with 4 additions and 0 deletions

4
scripts/adbkill Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
pid=$(adb shell "ps | grep $1" | awk '{print $2}')
adb shell "kill $pid"