From 050891747e3f0d72848a6369a72483f9d07c0c5c Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Tue, 21 Jan 2020 07:17:11 -0500 Subject: [PATCH] pkgutil: add page (osx) (#3755) --- pages/osx/pkgutil.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 pages/osx/pkgutil.md 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}}`