grep a tab in UNIX

grep, unix

Solution

If using GNU grep, you can use the Perl-style regexp:

grep -P '\t' *

Problem

How do I `grep` tab (\t) in files on the Unix platform?

Original source

Related problems