当前位置: 技术问答>linux和unix
shell BC问题
来源: 互联网 发布时间:2017-04-10
本文导语: 一个比较简单的脚本,统计文本中第一列的总和。脚本如下: file="result.txt" total_time=0 while read line do cost=`echo $line|awk '{print $1}'` total_time=`echo $total_time+$cost|bc` #total_time=`echo $total_time|bc` done
一个比较简单的脚本,统计文本中第一列的总和。脚本如下:
file="result.txt"
total_time=0
while read line
do
cost=`echo $line|awk '{print $1}'`
total_time=`echo $total_time+$cost|bc`
#total_time=`echo $total_time|bc`
done
file="result.txt"
total_time=0
while read line
do
cost=`echo $line|awk '{print $1}'`
total_time=`echo $total_time+$cost|bc`
#total_time=`echo $total_time|bc`
done