shell脚本,awk实现每个数字加1.
摘要:
[root@localhost add]# cat file 1 3 4 5 7 8 9 [root@localhost add]# cat file|awk '{for(i=1;i<=NF;i++){$i+=1}}1' 2 4 5 6 8 9 10 [root@localhost add]# cat file|awk '{for(i=1;i<=NF;i++){$i+=1}}1{print $... 阅读全文
posted @ 2016-09-07 23:47 王月波 阅读(5555) 评论(0) 推荐(0)
浙公网安备 33010602011771号