etc/info/count-current-debt.awk

4 lines
65 B
Awk
Raw Normal View History

2022-08-08 03:52:23 +03:00
BEGIN {cnt = 0}
{if($2 == "Debt") cnt += $4 * $5}
END{print cnt}