mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-10 14:16:41 +03:00
25 lines
248 B
Plaintext
25 lines
248 B
Plaintext
|
# accounts command
|
||
|
|
||
|
# basic accounts report
|
||
|
<
|
||
|
account a
|
||
|
|
||
|
2018/1/1 ; foo:
|
||
|
(a:aa) 1
|
||
|
|
||
|
$ hledger -f - accounts
|
||
|
a
|
||
|
a:aa
|
||
|
>=
|
||
|
|
||
|
# tree mode
|
||
|
$ hledger -f - accounts --tree
|
||
|
a
|
||
|
aa
|
||
|
>=
|
||
|
|
||
|
# filtering transactions by tag
|
||
|
$ hledger -f - accounts tag:foo
|
||
|
a:aa
|
||
|
>=
|