remove packages on osx
Hmm...
usually you can remove Applications by dragging it to the Trash. But what about pkg files?
I found a blog entry how to remove them:
List identifiers [ID]:
pkgutil --pkgs | grep [name]
Remove package content:
sudo pkgutil --unlink [ID]
Show installed files (files modified by script aren't listed - afaik):
pkgutil --files [ID]
Forget about the package (only do this once you removed all it's content):
sudo pkgutil --forget [ID]




