cut

cut			# 按列切割
    -d		# 指定分隔符
    -f		# 指定列,多列可以使用 - ;3-5

cut -d" " -f1,3,5 test.txt

# 
cut -c1-6,8-10 test.txt