hledger/bin/README.md

79 lines
3.1 KiB
Markdown
Raw Normal View History

Miscellaneous hledger add-ons, bash scripts, example make rules, etc.
2020-12-31 23:24:44 +03:00
Things in this directory can be unfinished or out of date.
2020-08-15 20:52:49 +03:00
## hledger scripts
2020-08-15 20:25:13 +03:00
The hledger-*.hs scripts here are example/experimental hledger [add-on commands].
See <https://hledger.org/scripting.html> for more about this.
They are mostly implemented as [stack] runghc scripts. See the comments in
hledger-check-fancyassertions.hs for more about how to run or compile them.
Short version: run bin/compile.sh to compile all scripts, and add this directory
to your $PATH so they show up in hledger's command list.
2019-07-17 01:37:45 +03:00
2020-08-15 20:25:13 +03:00
Scripts overview, simplest first:
- hledger-check-tagfiles.hs - check that all tag values containing a `/` (forward slash) exist as file paths
- hledger-check-tagfiles.cabal.hs - the above as a cabal script
2020-08-15 20:25:13 +03:00
- hledger-swap-dates.hs - print transactions with their date and date2 fields swapped
- hledger-print-location.hs - add file path/line number tags to the print command
- hledger-balance-as-budget.hs - use one balance report as budget goals for another one
- hledger-combine-balances.hs - show balance reports for two different periods side by side
- hledger-smooth.hs - incomplete attempt at automatically splitting infrequent/irregular transactions
- hledger-check-fancyassertions.hs - check more complex account balance assertions
[add-on commands]: http://hledger.org/hledger.html#add-on-commands
[stack]: https://www.fpcomplete.com/haskell/get-started
2020-08-15 20:25:13 +03:00
[cabal]: https://www.haskell.org/cabal
2020-08-15 20:52:49 +03:00
How to:
2020-12-08 20:27:36 +03:00
### Install all scripts as add-on commands
$ git clone https://github.com/simonmichael/hledger
2021-01-13 02:11:20 +03:00
$ hledger/bin/compile.sh
$ export PATH=$PATH:$PWD/hledger/bin
2020-08-15 20:25:13 +03:00
2021-01-13 02:11:20 +03:00
$ hledger # scripts now appear in commands list
$ hledger-print-location --help # run a script directly
$ hledger print-location -- --help # or run it via hledger. -- is needed before script options
2020-08-15 20:25:13 +03:00
2020-08-15 20:52:49 +03:00
### Create a new script
The example scripts follow a template that implements hledger's
standard command line options and help, so it's a good idea to use one
as your starting point. The hledger- naming is not required, but it
causes scripts to show up in the hledger commands list. On unix,
your new script should be marked executable. This should do it:
2021-01-13 02:11:20 +03:00
$ cd hledger
$ cp bin/hledger-swap-dates.hs bin/hledger-foo.hs # and edit, at least the command name and help
$ stack install string-qq # ensure any extra script deps are installed
$ bin/hledger-cmd.hs --help
2020-08-15 20:52:49 +03:00
foo [OPTIONS]
My new foo command.
...
2021-01-13 02:11:20 +03:00
$ stack ghc bin/hledger-cmd.hs
2020-08-15 20:52:49 +03:00
$ hledger foo -- --help
foo [OPTIONS]
My new foo command.
...
### Run ghcid on a script
2021-01-13 02:11:20 +03:00
$ stack install string-qq # ensure any extra script deps are installed
2020-08-15 20:52:49 +03:00
$ stack exec -- ghcid bin/hledger-foo.hs
...
Ok, one module loaded.
All good (1 module, at 10:50:48)
### Run ghci on a script
2021-01-13 02:11:20 +03:00
$ stack install string-qq # ensure any extra script deps are installed
2020-08-15 20:52:49 +03:00
$ stack ghci bin/hledger-foo.hs
...
Ok, one module loaded.
2021-01-13 02:11:20 +03:00
...
2020-08-15 20:52:49 +03:00
ghci>