#!/bin/sh

for file in "$@"
do
	if test -f "$file" && grep Q_OBJECT "$file" >/dev/null 2>/dev/null
	then
		echo "$file"
	fi
done
