How to remove every .plist file on the command line

Use this command to remove every .plist file in the current folder recursively:

find . -name "*.plist" -exec rm -v {} \;

Since .plist files are metadata from MacOS applications, it’s often fine to remove them from backups, NAS storage etc.