[root@master yjt]# cat yjt.sh
#!/bin/bash
awk -v field="$1" '{sum+=$field; n++;}END {if (n > 0) print sum/n;else {print 'error' > "/tmp/.stderr"; exit 1};}' tt
[root@master yjt]# cat tt
1 2 31 2 34 5 6
本文共 254 字,大约阅读时间需要 1 分钟。
[root@master yjt]# cat yjt.sh
#!/bin/bash
awk -v field="$1" '{sum+=$field; n++;}END {if (n > 0) print sum/n;else {print 'error' > "/tmp/.stderr"; exit 1};}' tt
[root@master yjt]# cat tt
1 2 31 2 34 5 6
转载于:https://www.cnblogs.com/yjt1993/p/9561044.html