Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

29
tldr/android/pm Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, android]
source: https://github.com/tldr-pages/tldr.git
---
# pm
> Display information about apps on an Android device.
> More information: <https://developer.android.com/tools/adb#pm>.
- List all installed apps:
`pm list packages`
- List all installed [s]ystem apps:
`pm list packages -s`
- List all installed [3]rd-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}}`