summaryrefslogtreecommitdiff
path: root/scripts/entry
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/entry')
-rwxr-xr-xscripts/entry16
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/entry b/scripts/entry
deleted file mode 100755
index 28daf8c8..00000000
--- a/scripts/entry
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-if [ -z "$LEDGER" -o ! -r $LEDGER ]; then
- echo Please set your LEDGER environment variable.
-fi
-
-line=`wc -l $LEDGER | awk '{print $1}'`
-
-if ledger entry "$@" > /tmp/entry; then
- cat /tmp/entry >> $LEDGER
-else
- echo "$@" >> $LEDGER
-fi
-rm /tmp/entry
-
-vi +$line $LEDGER