Skip to content

Instantly share code, notes, and snippets.

View IdrisN's full-sized avatar

Idris Nematpur IdrisN

  • Darmstadt, Germany
View GitHub Profile
@IdrisN
IdrisN / cutit.bat
Created October 9, 2018 10:18
Batch script to enable wireless adb with just one command
FOR /F "tokens=9 delims= " %%a in ('adb shell ip route') do (
set ip=%%a
)
adb tcpip 5555
set ipwithport=%ip%:5555
adb connect %ipwithport%