In order to extract text from the first column of file called textfile, which command would you use?
cat textfile | awk '{print $1}'
awk textfile {print $1}
cat textfile | awk [print $1]
cat {$1,textfile}