Corte o Linux da guia
cut -f2 -d$'\t' infile
DreamCoder
cut -f2 -d$'\t' infile
awk -F '\t' '{ print $2 }' inputfile
cut -f2 -d' ' infile
$ echo -e "a\tb\tc" |tr '\t' ' ' |cut -d' ' -f2
b