Y
Hacker News
new
|
ask
|
show
|
jobs
by
akerro
2649 days ago
Login to android shell using adb
1 comments
kopijahe
2649 days ago
More specifically:
adb shell pm list packages
You can sort it alphabetically by piping it through the "sort" command, like this:
adb shell "pm list packages | sort"
link