you might want to look at awk or gawk commands to process texts in a set format. (it'll handle delimited and fixed space columns of text ).
e.g.
awk ' '{print $1}' file
would output the first column (assuming its white space separated )
try here for more examples
http://www.linuxfocus.org/English/Se...rticle103.html