-
-
Save xingstarx/40914fc48837b7f0a1573a0934a1d3f3 to your computer and use it in GitHub Desktop.
list all installed packages in android adb shell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//只显示包名的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