AWK:如何将列中的值加一
在上一个问题中,我询问如何将列中所有条目的值减 1
(正确)答案是 awk '{ $7--; print $0 }',其中 $7 表示第 7 列
Incrementing 列值的类似答案是什么?
非常感谢
基督徒
In a previous question I asked how to decrement the value of all entries in a column by 1
The (correct) answer was
awk '{ $7--; print $0 }', where $7 means the 7th column
What would an analogous answer for INCREMENTING column values be?
Thanks so much
Christian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
++
而不是--
。Use
++
instead of--
.