echo '1 2 3 4' | cut -d' ' -f1
echo '1 2 3 4' | cut -d' ' -f2
echo '1 2 3 4' | sp2tab | cut -f2
echo '1 2 3 4' | awk '{print $2}'
> echo '1 2 3 4' | sed 's/ */\t/g' | cut -f2 2
tr is nice!
echo ' 1 2 3 4' | tr -s " " | cut -f1 -d " " > echo ' 1 2 3 4' | awk '{print $1}' >1