1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 08:42:07 +02:00
tldr/pages/common/ledger.md
Lena 0fddee2272
pages/*: reword descriptions to comply with the style guide (#11507)
* pages/*: reword descriptions to comply with the style guide

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-15 09:55:25 +05:30

24 lines
532 B
Markdown

# ledger
> A powerful, double-entry accounting system.
> More information: <https://www.ledger-cli.org>.
- Print a balance report showing totals:
`ledger balance --file {{path/to/ledger.journal}}`
- List all postings in Expenses ordered by amount:
`ledger register {{expenses}} --sorted {{amount}}`
- Print total Expenses other than Drinks and Food:
`ledger balance {{Expenses}} and not ({{Drinks}} or {{Food}})`
- Print a budget report:
`ledger budget`
- Print summary information about all the postings:
`ledger stats`