shell脚本,awk实现每个数字加1.
Posted 王月波
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shell脚本,awk实现每个数字加1.相关的知识,希望对你有一定的参考价值。
[[email protected] add]# cat file 1 3 4 5 7 8 9 [[email protected] add]# cat file|awk ‘{for(i=1;i<=NF;i++){$i+=1}}1‘ 2 4 5 6 8 9 10 [[email protected] add]# cat file|awk ‘{for(i=1;i<=NF;i++){$i+=1}}1{print $0}‘ 2 4 5 6 8 9 10 [[email protected] add]# cat file|awk ‘{for(i=1;i<=NF;i++){$i+=1}}{print $0}‘ 2 4 5 6 8 9 10 [[email protected] add]#
以上是关于shell脚本,awk实现每个数字加1.的主要内容,如果未能解决你的问题,请参考以下文章
在linux 下编写awk脚本计算每个人的平均成绩及所有人的平均成绩