mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-12 03:58:54 +00:00
Update cheatsheets
This commit is contained in:
37
tldr/adb-shell-pm-list-packages
Normal file
37
tldr/adb-shell-pm-list-packages
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# adb shell pm list packages
|
||||
|
||||
> List installed, known, or filtered packages on an Android device.
|
||||
> More information: <https://developer.android.com/tools/adb>.
|
||||
|
||||
- List all installed packages:
|
||||
|
||||
`adb shell pm list packages`
|
||||
|
||||
- List all packages and their associated APK file paths:
|
||||
|
||||
`adb shell pm list packages -f`
|
||||
|
||||
- Only list disabled packages:
|
||||
|
||||
`adb shell pm list packages -d`
|
||||
|
||||
- Only list enabled packages:
|
||||
|
||||
`adb shell pm list packages -e`
|
||||
|
||||
- Only list system packages:
|
||||
|
||||
`adb shell pm list packages -s`
|
||||
|
||||
- Only list third-party (non-system) packages:
|
||||
|
||||
`adb shell pm list packages -3`
|
||||
|
||||
- Show the installer for each package:
|
||||
|
||||
`adb shell pm list packages -i`
|
||||
Reference in New Issue
Block a user