summaryrefslogtreecommitdiff
path: root/scripts/bal
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/bal')
-rwxr-xr-xscripts/bal27
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