Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Get GPS Location from android phone
- #If no program is checking the location (example: Google Maps) then the location won't update
- #while [ 1 ];do adb shell dumpsys location |grep 'gps: Lo'|awk '{print $3}';done
- while [ 1 ];do adb shell dumpsys location |grep -A1 'Last Known Locations:'|tail -n 1|awk '{print $3}';done
- #if you haven't set permissions for accessing ADB you might need to use 'sudo'
- sudo killall adb
- #while [ 1 ];do sudo adb shell dumpsys location |grep 'gps: Lo'|awk '{print $3}';done
- while [ 1 ];do sudo adb shell dumpsys location |grep -A1 'Last Known Locations:'|tail -n 1|awk '{print $3}';done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement