costs

Tool to help you see the impact of recurring costs
git clone git://jacobedwards.org/costs
Log | Files | Refs | README

commit 60d4f0025ab0cc4e23153857aa2318ac520e2945
parent c58c4b6e26ea1bc22466000456415d718275fc45
Author: Jacob R. Edwards <jacob@jacobedwards.org>
Date:   Sun, 22 Jun 2025 17:04:51 -0500

Retain input order in output of percentage.awk

Diffstat:
Mpercentage.awk | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/percentage.awk b/percentage.awk @@ -17,6 +17,6 @@ BEGIN { END { div = total / 100; - for (i in names) + for (i = 1; i <= length(names); ++i) print names[i], values[names[i]] / div; }