mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
42 lines
676 B
Plaintext
42 lines
676 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pkgz
|
|
|
|
> Unified package manager for multiple sources.
|
|
> More information: <https://github.com/roguehashrate/pkgz#-usage>.
|
|
|
|
- Install a package:
|
|
|
|
`pkgz install {{package_name}}`
|
|
|
|
- Remove a package:
|
|
|
|
`pkgz remove {{package_name}}`
|
|
|
|
- Search for a package:
|
|
|
|
`pkgz search {{package_name}}`
|
|
|
|
- Show how many packages are installed per source:
|
|
|
|
`pkgz info`
|
|
|
|
- Show where a package is installed or available:
|
|
|
|
`pkgz info {{package_name}}`
|
|
|
|
- Update all packages in all sources:
|
|
|
|
`pkgz update`
|
|
|
|
- Remove cache of all supported sources:
|
|
|
|
`pkgz clean`
|
|
|
|
- Display version:
|
|
|
|
`pkgz --version`
|