Hello,
Have a look at the man page for awk:
If you're sure that data are divided by tabs, use \t as field separator and print the desired data.
Code:
awk -F"\t" '{ print $1 }' yourfile
will give you the first column as output. Is that what you're looking for?
Kind regards,
Eric