cut -f2 -d$' ' infile
cut -f2 -d' ' infile
awk -F ' ' '{ print $2 }' inputfile
$ echo -e "a b c" |tr ' ' ' ' |cut -d' ' -f2 b