Here's another one that we used recently...

awk -F\t '{ print $3,$7 }' /path/to/inputfile | sort > /path/to/outputfile

Extracts fields 3 and 7 from tab-delimited file, sorts, outputs to new
file.

Reply via email to