Skip to content

Instantly share code, notes, and snippets.

@xingstarx
Forked from davidnunez/gist:1404789
Last active December 5, 2016 05:48
Show Gist options
  • Save xingstarx/40914fc48837b7f0a1573a0934a1d3f3 to your computer and use it in GitHub Desktop.
Save xingstarx/40914fc48837b7f0a1573a0934a1d3f3 to your computer and use it in GitHub Desktop.
list all installed packages in android adb shell
//只显示包名的list
adb shell "pm list packages"|cut -f 2 -d ":"
//显示全称的list
adb shell pm list packages -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment