使用 awk 获取下一个字段
我有这个输入文件(空格是行中两个元素的分隔符,否则只有一个元素)
a:1
a:1 123
b:2 345
c:3 456
d:4
d:4 456
..
..
我对输出感兴趣,即
a:1 123
d:4 456
前一个字段只有一个字段的行。
I have this input file (space is the separator for the two elements in the line otherwise there is just one element)
a:1
a:1 123
b:2 345
c:3 456
d:4
d:4 456
..
..
I am interested in the output to be
a:1 123
d:4 456
i.e lines which have the preceding field to have just one field.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这个:
Try this: