hledger/README

30 lines
828 B
Plaintext
Raw Normal View History

2008-10-01 12:51:08 +04:00
hledger - a ledger-compatible text-based accounting tool.
Copyright (c) 2007-2008 Simon Michael <simon@joyful.com>
Released under GPL version 3 or later.
This is a minimal haskell clone of John Wiegley's ledger
<http://newartisans.com/software/ledger.html>. hledger does basic
register & balance reports, and demonstrates a (naive) purely
functional implementation of ledger.
Installation:
runhaskell Setup.hs configure
runhaskell Setup.hs build
sudo runhaskell Setup.hs install
(or symlink dist/build/hledger/hledger into your path)
Examples:
2008-10-01 15:07:20 +04:00
hledger -f sample.ledger balance
2008-10-01 12:51:08 +04:00
export LEDGER=sample.ledger
2008-10-01 13:36:13 +04:00
hledger -s balance
2008-10-01 15:07:20 +04:00
hledger register
hledger reg cash
hledger reg -- shop
2008-10-01 12:51:08 +04:00
2008-10-08 21:01:07 +04:00
This version of hledger mimics ledger 2.5 closely,
see the ledger manual for more info:
2008-10-01 12:51:08 +04:00
<http://joyful.com/repos/hledger/doc/ledger.html>.