Last active
December 22, 2018 08:18
-
-
Save ony/fb81453d31004e322fdbe379fa3b31f0 to your computer and use it in GitHub Desktop.
Sample of building pipeline of hledger-rewrite
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
budget_buckets() { | |
if [[ $# -eq 0 ]]; then | |
cat # no more re-writes | |
else | |
# parse next entry | |
local account="${1%% -> *}" | |
local budget="Budget:${1##* -> }" | |
shift | |
# build current query | |
local query=("$account" "${ignores[@]}") | |
# prepare negative query for subsequent requests | |
local ignores=("${ignores[@]}" and "not:$account") | |
# spawn rewriter | |
hledger-rewrite -f- "${query[@]}" \ | |
--add-posting "($budget) *-1" \ | |
| budget_buckets "$@" # rewrite with rest of entries | |
fi | |
} | |
buckets=( | |
Expenses:Food | |
Expenses:Taxes | |
Expenses:Housing:Rent | |
'Expenses:Housing:Internet -> Expenses:Communications' | |
Expenses:Housing | |
Expenses:Medicine | |
'Expenses:Grocery -> Expenses:Supplies' | |
Expenses:Supplies | |
Expenses:Health | |
'Expenses:Phone -> Expenses:Communications' | |
'Expenses:Delivery -> Expenses:Operations' | |
'Expenses:Bank:Fee -> Expenses:Operations' | |
Expenses | |
) | |
hledger print "$@" | budget_buckets "${buckets[@]}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment