awk 获取字段的帮助
我有像我想要的字段
a_b_c_d
作为输出 ab c_d,此查询不适用于此,
awk -F"_" <file> | '{print $1,$2,$3}'
因为它只会打印 abc
I have field like
a_b_c_d
I want as the output a b c_d, this query wont work for this
awk -F"_" <file> | '{print $1,$2,$3}'
Since it will only print a b c
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
换句话说
,
括号中的代码意味着
Try
In other words,
The code in the brackets means