Skip to content

Instantly share code, notes, and snippets.

@Kuanlin-Chen
Created February 23, 2019 08:16
Show Gist options
  • Save Kuanlin-Chen/654c77a8aaead1377051857fb36998f7 to your computer and use it in GitHub Desktop.
Save Kuanlin-Chen/654c77a8aaead1377051857fb36998f7 to your computer and use it in GitHub Desktop.
Split string by space first, then split the 6th string by colon.
@ECHO off
for /f "tokens=1,2,3,4,5,6" %%a in ('adb devices -l') do (
if "%%b" == "device" (
ECHO Serial Number : %%a
for /f "tokens=2 delims=:" %%A in ( "%%f" ) do (
ECHO Transport Id : %%A
start adb_by_transportid.bat %%A
)
)
)
PAUSE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment