this should work:
FIRST=addDesignControlChangeNotificationSECOND=removeDesignControlChangeNotificationgrep -l $FIRST * | while IFS= read -r FILEdo grep $SECOND "$FILE"&> /dev/null if [ $? -ne 0 ] then echo "File $FILE has $FIRST but not $SECOND" fidone