hledger-ui, hledger-web: add page; hledger: update page (#12824)
This commit is contained in:
@@ -1,20 +1,37 @@
|
||||
# hledger
|
||||
|
||||
> A plain text accounting software for the command-line.
|
||||
> More information: <https://hledger.org>.
|
||||
> A robust, friendly plain text accounting app.
|
||||
> See also: `hledger-ui` for TUI, `hledger-web` for web interface.
|
||||
> More information: <https://hledger.org/hledger.html>.
|
||||
|
||||
- Add transactions to your journal interactively:
|
||||
- Record new transactions interactively, saving to the default journal file:
|
||||
|
||||
`hledger add`
|
||||
|
||||
- Show the account hierarchy, using a specific journal file:
|
||||
- Import new transactions from `bank.csv`, using `bank.csv.rules` to convert:
|
||||
|
||||
`hledger --file {{path/to/file.journal}} accounts --tree`
|
||||
`hledger import {{path/to/bank.csv}}`
|
||||
|
||||
- Show a monthly income statement:
|
||||
- Print all transactions, reading from multiple specified journal files:
|
||||
|
||||
`hledger incomestatement --monthly --depth 2`
|
||||
`hledger print --file {{path/to/prices-2024.journal}} --file {{path/to/prices-2023.journal}}`
|
||||
|
||||
- Print the amount of cash spent on food:
|
||||
- Show all accounts, as a hierarchy, and their types:
|
||||
|
||||
`hledger print assets:cash | hledger -f- -I balance expenses:food --depth 2`
|
||||
`hledger accounts --tree --types`
|
||||
|
||||
- Show asset and liability account balances, including zeros, hierarchically:
|
||||
|
||||
`hledger balancesheet --empty --tree --no-elide`
|
||||
|
||||
- Show monthly incomes/expenses/totals, largest first, summarised to 2 levels:
|
||||
|
||||
`hledger incomestatement --monthly --row-total --average --sort --depth 2`
|
||||
|
||||
- Show the `assets:bank:checking` account's transactions and running balance:
|
||||
|
||||
`hledger aregister assets:bank:checking`
|
||||
|
||||
- Show the amount spent on food from the `assets:cash` account:
|
||||
|
||||
`hledger print assets:cash | hledger -f- -I aregister expenses:food`
|
||||
|
Reference in New Issue
Block a user