I used to use grep -P successfully earlier, till I got a machine where grep is not compiled with Perl regular expression support. Now I am having trouble matchi
grep -P
Try this instead:
grep -G $'\t'
For more info please see bug #23535: Grep Doesn't Support \t as a tab character.