etc/info/count-current-money.awk

4 lines
47 B
Awk
Raw Normal View History

2022-08-08 03:52:23 +03:00
BEGIN{cnt = 0}
{cnt += $4 * $5}
END{print cnt}