How to delete all “Apple binary property list” files from directory

In backups you often see files like

0899d5d3c7f86344a8c085a053f5ca106482e6b8: Apple binary property list
089ce36beb618daa09263be95bd70880bd974dae: Apple binary property list
08b86c8bffdf6b12a0e4bd9f6807316afac51b53: Apple binary property list

without filename extension, that are not useful when you just care about the backupped files themselves and not any Apple-related metadata.

You can remove them using

file * | grep "Apple binary property list" | cut -f1 -d: | xargs rm -v