in reply to Re: How to make sure only case-sensitive grep's get pushed
in thread How to make sure only case-sensitive grep's get pushed

The new line is a typo in both keys and values

I want to search for file content.case-sensitivee mismatch meaning,for example am searching for the key "'seeklib" in the content of all the *.mk,the grep result should match the hash value('SeekLib),anything other than the value ,meaning seeklib,seekLib(note the case-sensitive difference) is a mismatch.

  • Comment on Re^2: How to make sure only case-sensitive grep's get pushed

Replies are listed 'Best First'.
Re^3: How to make sure only case-sensitive grep's get pushed
by moritz (Cardinal) on Mar 17, 2011 at 15:57 UTC

    So search case insensitively, and later compare all matches with the search string, and report only those matches are not eq the key.

    And note that the grep built-in searches in list, not in files.

      How do I search for the content of the files?is there a different utility?