From 7669e2c2dab8a904e8031fed447f22bb48ad59d7 Mon Sep 17 00:00:00 2001 From: Juri Date: Mon, 10 Oct 2022 17:17:43 +0200 Subject: [PATCH] hledger: add page (#8635) --- pages/common/hledger.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/hledger.md diff --git a/pages/common/hledger.md b/pages/common/hledger.md new file mode 100644 index 0000000000..3e678374ed --- /dev/null +++ b/pages/common/hledger.md @@ -0,0 +1,20 @@ +# hledger + +> A plain text accounting software for the command-line. +> More information: . + +- Add transactions to your journal interactively: + +`hledger add` + +- Show the account hierarchy, using a specific journal file: + +`hledger --file {{path/to/file.journal}} accounts --tree` + +- Show a monthly income statement: + +`hledger incomestatement --monthly --depth 2` + +- Print the amount of cash spent on food: + +`hledger print assets:cash | hledger -f- -I balance expenses:food --depth 2`