summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xreport20
1 files changed, 0 insertions, 20 deletions
diff --git a/report b/report
deleted file mode 100755
index ecd67e0d..00000000
--- a/report
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-command=$1
-shift
-
-case "$command" in
- balance) ledger "$@" balance -- -Equity -Income -Expenses -Retirement ;;
- worth) ledger "$@" balance assets liabilities ;;
- profit) ledger "$@" balance income expense ;;
- spending) ledger "$@" balance -F food movies gas tips \
- health supplies -insurance -vacation ;;
- monthly_spending)
- for i in jan feb mar apr may jun jul aug sep oct nov dec
- do
- echo $i:
- $0 spending -d $i
- done ;;
- huquq) ledger "$@" balance -n ^huquq ;;
- equity) ledger "$@" equity -- -^Income -^Expenses -^Equity ;;
-esac