如何将多个字段分配给一个变量?
我想使用 awk 1liner
cat data.txt
将 data.txt 文件转换为以下输出
- personA neta netb netc
- personB meta metb metc metd
....
输出:
- personA 的包中有 {neta netb netc} 物品
- personB 的包中有 {meta metb metc metd} 物品
i would like to convert the data.txt file into the following output using awk 1liner
cat data.txt
- personA neta netb netc
- personB meta metb metc metd
....
output:
- personA has {neta netb netc} items in his bag
- personB has {meta metb metc metd} items in his bag
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这是 subtr() 和 index() 的一个很好的用途。
输出:
this is a good use for subtr() and index().
output:
怎么样:
What about: