mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
469 B
Plaintext
30 lines
469 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, android]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pkg
|
|
|
|
> Package management utility for Termux.
|
|
> More information: <https://wiki.termux.com/wiki/Package_Management>.
|
|
|
|
- Upgrade all installed packages:
|
|
|
|
`pkg upgrade`
|
|
|
|
- Install a package:
|
|
|
|
`pkg install {{package}}`
|
|
|
|
- Uninstall a package:
|
|
|
|
`pkg uninstall {{package}}`
|
|
|
|
- Reinstall a package:
|
|
|
|
`pkg reinstall {{package}}`
|
|
|
|
- Search for a package:
|
|
|
|
`pkg search {{package}}`
|