本文介绍了输出文件的第二列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
提供了两列的文件,并以标准空白隔开
given a file with two columns, separatedly by standard white space
a b
c d
f g
h
我如何输出第二列
推荐答案
由于示例数据的最后一行没有第一列,因此您必须将其解析为固定宽度的列:
Because the last line of your example data has no first column you'll have to parse it as fixed width columns:
awk 'BEGIN {FIELDWIDTHS = "2 1"} {print $2}'
这篇关于输出文件的第二列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!