你的文件分隔符恐怕不止一个空格(一定的who生成的):

用awk:

awk '{print $2}' file

一定要用cut的话:

cat file|tr -s ' '|cut -d' ' -f2