3 lines
102 B
Bash
3 lines
102 B
Bash
#!/bin/bash
|
|
adb shell dumpsys location | grep 'last location=' | head -n 1 | awk -F' ' '{ print $3 }'
|