1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 04:02:09 +02:00
tldr/pages/osx/pkgutil.md
2022-02-14 08:21:43 -03:00

20 lines
542 B
Markdown

# pkgutil
> Query and manipulate Mac OS X Installer packages and receipts.
> More information: <https://ss64.com/osx/pkgutil.html>.
- List package IDs for all installed packages:
`pkgutil --pkgs`
- Verify cryptographic signatures of a package file:
`pkgutil --check-signature {{path/to/filename.pkg}}`
- List all the files for an installed package given its ID:
`pkgutil --files {{com.microsoft.Word}}`
- Extract the contents of a package file into a directory:
`pkgutil --expand-full {{path/to/filename.pkg}} {{path/to/directory}}`