Try "grep -P '\t'" to use perl-compatible regexps. Note that this is a
specific capability of GNU grep, so it will not be portable to systems
that use a different grep. It might be more portable to use "awk
'/\t/'".
Or to insert a literal tab as others said.