Learn Something New Every Day

Every day, people learn something new that adds some kind of value to their lives. I am going to try to post at one thing that I learn every day. I am a law school graduate, used to do some IT work, and just generally get out and around, so this shouldn’t be too difficult to do, right? We’ll see…

Remove All Files Installed By PKG File on a Mac

To get a list of installed packages:

pkgutil --pkgs

Then, you can get a list of files in the package with:

pkgutil --files packagename

(via http://geekyninja.com/archives/how-to-uninstall-mac-os-x-pkg-packages/#comment-5094)