I want to use bash to process a tab delimited file. I only need the second column and third to a new file.
expanding on the answer of carl-norum, using only tab as a delimiter, not all blanks:
cut -d$'\t' -f 2-3 input.txt > output.txt
don't put a space between d and $