diff options
author | John Wiegley <johnw@newartisans.com> | 2004-05-13 18:37:12 -0400 |
---|---|---|
committer | johnw <johnw@newartisans.com> | 2004-05-13 18:37:12 -0400 |
commit | 9ca1d24d30a485300b9486b18c068660da630cc1 (patch) | |
tree | 50d29d69278934be7e318a565d6223a6a0ab2c36 /scripts/bal | |
parent | 31dafc3c163e4ceae42b1477c4eaeb4425b2b883 (diff) | |
download | fork-ledger-9ca1d24d30a485300b9486b18c068660da630cc1.tar.gz fork-ledger-9ca1d24d30a485300b9486b18c068660da630cc1.tar.bz2 fork-ledger-9ca1d24d30a485300b9486b18c068660da630cc1.zip |
initial import into Darcs
Diffstat (limited to 'scripts/bal')
-rwxr-xr-x | scripts/bal | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/bal b/scripts/bal new file mode 100755 index 00000000..7fdf54ca --- /dev/null +++ b/scripts/bal @@ -0,0 +1,27 @@ +#!/bin/sh + +switch="" +current="-c" +limit="-l \$50" +negonly="-N ^Liabilities" + +if [ "$1" = "-C" -o "$1" = "-U" -o "$1" = "-P" ]; then + switch="$1" + shift +elif [ "$1" = "-b" -o "$1" = "-e" ]; then + current="$1 $2" + shift 2 +fi + +accts="$@" +if [ -z "$accts" ]; then + accts="-Equity -Income -Expenses" + if [ ! "$switch" = "-P" ]; then + accts="$accts -Savings -Retirement" + fi +else + limit="" + negonly="" +fi + +ledger $current $limit $negonly -s $switch balance $accts |