summaryrefslogtreecommitdiff
path: root/tithe
blob: 2edf3793f3e44cb4cd9691186bd7727c989359c0 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

args="li:me:church:tithe --auto --value=now,USD"

case $1 in
  "bal") hledger bal $args;;
  "reg") hledger reg $args;;
  *) hledger bal $args --output-format=json | jq '.[1][].aquantity.floatingPoint';;
esac