mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 22:02:08 +02:00

* Refresh `pm`: - simplify descriptions - fix placeholder for keywords * Refresh `settings`: - deprecate `the` in favor of `a` * pm,settings: update Tamil translation Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
24 lines
462 B
Markdown
24 lines
462 B
Markdown
# pm
|
|
|
|
> Display information about apps on an Android device.
|
|
> More information: <https://developer.android.com/studio/command-line/adb#pm>.
|
|
|
|
- List all installed apps:
|
|
|
|
`pm list packages`
|
|
|
|
- List all installed system apps:
|
|
|
|
`pm list packages -s`
|
|
|
|
- List all installed 3rd-Party apps:
|
|
|
|
`pm list packages -3`
|
|
|
|
- List apps matching specific keywords:
|
|
|
|
`pm list packages {{keyword1 keyword2 ...}}`
|
|
|
|
- Display a path of the APK of a specific app:
|
|
|
|
`pm path {{app}}`
|