in reply to Accessing Tab Delimited Field in Perl One-Liner

There is for sure going to be a shorter more golf-ish solution, but the obvious one is:

perl -ne '@cols = split /\t/; print if $cols[1] == 0' mydat.txt