etc/info/count-current-money.awk
2022-08-08 05:52:23 +05:00

3 lines
47 B
Awk

BEGIN{cnt = 0}
{cnt += $4 * $5}
END{print cnt}