diff options
author | John Wiegley <johnw@newartisans.com> | 2004-07-26 23:33:51 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2004-07-26 23:33:51 -0400 |
commit | 161d6f79bd6f4ab45afa1cbae77548c8e508809a (patch) | |
tree | 55391f4997e20de173579d90b43316a968b27c9e /scripts/bal | |
parent | fde56d0f1214b8fb9de5ba4d42d683ed494c45b0 (diff) | |
download | fork-ledger-161d6f79bd6f4ab45afa1cbae77548c8e508809a.tar.gz fork-ledger-161d6f79bd6f4ab45afa1cbae77548c8e508809a.tar.bz2 fork-ledger-161d6f79bd6f4ab45afa1cbae77548c8e508809a.zip |
initial rev of 2.0
Diffstat (limited to 'scripts/bal')
-rwxr-xr-x | scripts/bal | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/scripts/bal b/scripts/bal deleted file mode 100755 index 7fdf54ca..00000000 --- a/scripts/bal +++ /dev/null @@ -1,27 +0,0 @@ -#!/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 |