Well, that is possible. Would you find the possible bug in the following command line that generates the Wiki table on https://trisquel.info/en/wiki/financial-information ? $ printf '{| class="wikitable"\n! Currency\n! 0 to 1 year ago\n! 1 to 2 years ago\n! 2 to 3 years ago\n! 3 to 4 years ago\n! 4 to 5 years ago\n'; wget https://trisquel.info/en/donate -qO - | tr 'donated/ { currencies[$2] = ""; currency = $2; amount = $3; getline; getline; getline; if ($0 ~ /year/) donations[currency, substr($1, 4)] += amount; else donations[currency, 0] += amount } END { for (c in currencies) { printf c; for (y = 0; y != 5; ++y) printf " || " donations[c, y] + 0; print "" } }' | sort | sed 'i|-'; printf '|}'

Reply via email to