mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 14:46:00 +02:00
parent
4824f90963
commit
c1fb61cf25
1 changed files with 24 additions and 0 deletions
24
pages/android/pm.md
Normal file
24
pages/android/pm.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# pm
|
||||
|
||||
> Show information about apps on an Android device.
|
||||
> More information: <https://developer.android.com/studio/command-line/adb#pm>.
|
||||
|
||||
- Print a list of all installed apps:
|
||||
|
||||
`pm list packages`
|
||||
|
||||
- Print a list of all installed system apps:
|
||||
|
||||
`pm list packages -s`
|
||||
|
||||
- Print a list of all installed 3rd-Party apps:
|
||||
|
||||
`pm list packages -3`
|
||||
|
||||
- Print a list of apps matching specific keywords:
|
||||
|
||||
`pm list packages {{keywords}}`
|
||||
|
||||
- Print the path of the APK of a specific app:
|
||||
|
||||
`pm path {{app}}`
|
Loading…
Add table
Reference in a new issue