diff --git a/pages/osx/pkgutil.md b/pages/osx/pkgutil.md new file mode 100644 index 000000000..b772950b1 --- /dev/null +++ b/pages/osx/pkgutil.md @@ -0,0 +1,15 @@ +# pkgutil + +> Query and manipulate Mac OS X Installer packages and receipts. + +- List package IDs for all installed packages: + +`pkgutil --pkgs` + +- Verify cryptographic signatures of a package file: + +`pkgutil --check-signature {{filename.pkg}}` + +- List all the files for an installed package given its ID: + +`pkgutil --files {{com.microsoft.Word}}`