- or download this
grep -Hn '<TAB>' *
- or download this
cat -nT /tmp/foo | grep '\^I'
- or download this
perl -lne 'print "$ARGV:$.:$_" if /\t/; close ARGV if eof' *
- or download this
perl -ne 'print "$ARGV:$.:$_" if /\t/' /tmp/foo
- or download this
for f in * ; do perl -ne 'print "$ARGV:$.:$_" if /\t/' $f; done