summaryrefslogtreecommitdiff
path: root/contrib/entry
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/entry')
-rwxr-xr-xcontrib/entry16
1 files changed, 16 insertions, 0 deletions
diff --git a/contrib/entry b/contrib/entry
new file mode 100755
index 00000000..cc030d8e
--- /dev/null
+++ b/contrib/entry
@@ -0,0 +1,16 @@
+#!/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