mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-10 14:16:41 +03:00
36 lines
389 B
Plaintext
36 lines
389 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
|
|
>=
|
|
|
|
# drop in flat mode
|
|
$ hledger -f - accounts --flat --drop 1
|
|
...
|
|
aa
|
|
>=
|
|
# drop in tree mode
|
|
$ hledger -f - accounts --tree --drop 1
|
|
...
|
|
aa
|
|
>=
|
|
|
|
# filtering transactions by tag
|
|
$ hledger -f - accounts tag:foo
|
|
a:aa
|
|
>=
|