From 9ca1d24d30a485300b9486b18c068660da630cc1 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 13 May 2004 18:37:12 -0400 Subject: initial import into Darcs --- scripts/entry | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 scripts/entry (limited to 'scripts/entry') diff --git a/scripts/entry b/scripts/entry new file mode 100755 index 00000000..28daf8c8 --- /dev/null +++ b/scripts/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 -- cgit v1.2.3