Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

25
tldr/hledger Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# hledger
> A plain text accounting software for the command-line.
> More information: <https://hledger.org>.
- 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`