hledger/extra/accountnames.hs

8 lines
221 B
Haskell
Raw Normal View History

#!/usr/bin/env runhaskell
-- list the default journal's chart of accounts in --flat style
2011-05-28 08:11:44 +04:00
import Hledger
main = do
j <- myJournal
let l = journalToLedger nullfilterspec{empty=True} j
mapM_ putStrLn (accountnames l)