I want to use bash to process a tab delimited file. I only need the second column and third to a new file.
Cut is probably the best choice here, second to that is awk
awk
awk -F"\t" '{print $2 "\t" $3}' input > out