001、awk
[root@pc1 test01]# ls a.txt [root@pc1 test01]# cat a.txt 8 3 2 5 [root@pc1 test01]# awk '{sum += $1} END {print sum}' a.txt ## awk计算第一列数据的和 18
002、paste + bc实现
[root@pc1 test01]# ls a.txt [root@pc1 test01]# cat a.txt ## 测试数据 8 3 2 5 [root@pc1 test01]# paste -d "+" -s a.txt ## -s实现列变行, -d指定连接符 8+3+2+5 [root@pc1 test01]# paste -d "+" -s a.txt | bc ## bc计算 18
。
003、
标签:txt,bc,##,pc1,一列,计算,linux,test01,root From: https://www.cnblogs.com/liujiaxin2018/p/18108140