Help for this page

Select Code to Download


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