mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-05 00:55:43 +00:00
26 lines
722 B
Plaintext
26 lines
722 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# hledger aregister
|
|
|
|
> Show the transactions and running balances in one account.
|
|
> More information: <https://hledger.org/hledger.html#aregister>.
|
|
|
|
- Show transactions and running balance in the `assets:bank:checking` account:
|
|
|
|
`hledger aregister assets:bank:checking`
|
|
|
|
- Show transactions and running balance in the first account named `*savings*`:
|
|
|
|
`hledger aregister savings`
|
|
|
|
- Show the checking account's cleared transactions, with a specified width:
|
|
|
|
`hledger aregister checking --cleared --width {{120}}`
|
|
|
|
- Show the checking register, including transactions from forecast rules:
|
|
|
|
`hledger aregister checking --forecast`
|