awk -F"^" '{
for (i =1;i<=NF;i++)
{
printf "%8.1f^",$i
t[i] +=$i
}
print ""
}
END { for (i=1;i<=NF;i++) printf "%8.1f^",t[i]
print ""
}  ' $1 

