2.6 KiB
ADD-ON COMMANDS
hledger also searches for external add-on commands, and will include
these in the commands list. These are programs or scripts in your PATH
whose name starts with hledger- and ends with a recognised
file extension (currently: no extension,
bat,com,exe,
hs,lhs,pl,py,rb,rkt,sh).
Add-ons can be invoked like any hledger command, but there are a few
things to be aware of. Eg if the hledger-web add-on is
installed,
hledger -h webshows hledger’s help, whilehledger web -hshows hledger-web’s help.Flags specific to the add-on must have a preceding
--to hide them from hledger. Sohledger web --serve --port 9000will be rejected; you must usehledger web -- --serve --port 9000.You can always run add-ons directly if preferred:
hledger-web --serve --port 9000.
Add-ons are a relatively easy way to add local features or experiment with new ideas. They can be written in any language, but haskell scripts have a big advantage: they can use the same hledger (and haskell) library functions that built-in commands do, for command-line options, journal parsing, reporting, etc.
Here are some hledger add-ons available:
Official add-ons
These are maintained and released along with hledger.
ui
hledger-ui provides an efficient terminal interface.
web
hledger-web provides a simple web interface.
Third party add-ons
These are maintained separately, and usually updated shortly after a hledger release.
iadd
hledger-iadd is a more interactive, terminal UI replacement for the add command.
interest
hledger-interest generates interest transactions for an account according to various schemes.
Experimental add-ons
These are available in source form in the hledger repo’s bin/ directory. They may be less mature and documented than built-in commands. Reading and tweaking these is a good way to start making your own!
autosync
hledger-autosync is a symbolic link for easily running ledger-autosync, if installed. ledger-autosync does deduplicating conversion of OFX data and some CSV formats, and can also download the data if your bank offers OFX Direct Connect.
chart
hledger-chart.hs is an old very basic pie chart generator.