4 lines
95 B
Bash
Executable File
4 lines
95 B
Bash
Executable File
#!/bin/sh
|
|
PID=`adb shell ps | grep test-wvdrmplugin | awk '{print $2}'`
|
|
adb shell kill -9 $PID
|