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?
grep, unix
If using GNU grep, you can use the Perl-style regexp:
grep -P '\t' *
How do I `grep` tab (\t) in files on the Unix platform?