update embedded manuals

This commit is contained in:
Simon Michael 2018-09-30 20:08:15 -10:00
parent b798c48040
commit 7bc500ccd2
18 changed files with 487 additions and 370 deletions

View File

@ -1,5 +1,5 @@
.TH "hledger\-api" "1" "July 2018" "hledger\-api 1.10.99" "hledger User Manuals" .TH "hledger\-api" "1" "September 2018" "hledger\-api 1.10.99" "hledger User Manuals"

View File

@ -117,4 +117,4 @@ SEE ALSO
hledger-api 1.10.99 July 2018 hledger-api(1) hledger-api 1.10.99 September 2018 hledger-api(1)

View File

@ -1,5 +1,5 @@
.TH "hledger_csv" "5" "July 2018" "hledger 1.10.99" "hledger User Manuals" .TH "hledger_csv" "5" "September 2018" "hledger 1.10.99" "hledger User Manuals"

View File

@ -249,4 +249,4 @@ SEE ALSO
hledger 1.10.99 July 2018 hledger_csv(5) hledger 1.10.99 September 2018 hledger_csv(5)

View File

@ -1,6 +1,6 @@
.\"t .\"t
.TH "hledger_journal" "5" "July 2018" "hledger 1.10.99" "hledger User Manuals" .TH "hledger_journal" "5" "September 2018" "hledger 1.10.99" "hledger User Manuals"
@ -1159,54 +1159,84 @@ hledger add, hledger\-iadd, hledger\-web, and ledger\-mode.
.PD .PD
In future it will also help detect misspelled accounts. In future it will also help detect misspelled accounts.
.PP .PP
Account names can be followed by a numeric account code:
.IP
.nf
\f[C]
account\ assets\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 1000
account\ assets:bank:checking\ \ \ \ 1110
account\ liabilities\ \ \ \ \ \ \ \ \ \ \ \ \ 2000
account\ revenues\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 4000
account\ expenses\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ 6000
\f[]
.fi
.PP
This affects how accounts are sorted in account and balance reports:
accounts with codes are listed before accounts without codes, and in
increasing code order (instead of listing all accounts alphabetically).
Warning, this feature is incomplete; account codes do not yet affect
sort order in
.IP \[bu] 2
the \f[C]accounts\f[] command
.IP \[bu] 2
the \f[C]balance\f[] command's single\-column mode
.IP \[bu] 2
flat mode balance reports (to work around this, declare account codes on
the subaccounts as well).
.IP \[bu] 2
hledger\-web's sidebar
.PP
Account codes should be all numeric digits, unique, and separated from
the account name by at least two spaces (since account names may contain
single spaces).
By convention, often the first digit indicates the type of account, as
in this numbering scheme and the example above.
In future, we might use this to recognize account types.
.PP
An account directive can also have indented subdirectives following it, An account directive can also have indented subdirectives following it,
which are currently ignored. which are currently ignored.
Here is the full syntax: Here is the full syntax:
.IP .IP
.nf .nf
\f[C] \f[C]
;\ account\ ACCTNAME\ \ [OPTIONALCODE] ;\ account\ ACCTNAME
;\ \ \ [OPTIONALSUBDIRECTIVES] ;\ \ \ [OPTIONALSUBDIRECTIVES]
account\ assets:bank:checking\ \ \ 1110 account\ assets:bank:checking
\ \ a\ comment \ \ a\ comment
\ \ some\-tag:12345 \ \ some\-tag:12345
\f[] \f[]
.fi .fi
.SS Account display order
.PP
Account directives have another purpose: they set the order in which
accounts are displayed, in hledger reports, hledger\-ui accounts screen,
hledger\-web sidebar etc.
For example, say you have these top\-level accounts:
.IP
.nf
\f[C]
$\ accounts\ \-1
assets
equity
expenses
liabilities
misc
other
revenues
\f[]
.fi
.PP
By default, they are displayed in alphabetical order.
But if you add the following account directives to the journal:
.IP
.nf
\f[C]
account\ assets
account\ liabilities
account\ equity
account\ revenues
account\ expenses
\f[]
.fi
.PP
the display order changes to:
.IP
.nf
\f[C]
$\ accounts\ \-1
assets
liabilities
equity
revenues
expenses
misc
other
\f[]
.fi
.PP
Ie, declared accounts first, in the order they were declared, followed
by any undeclared accounts in alphabetic order.
.PP
Note that sorting is done at each level of the account tree (within each
group of sibling accounts under the same parent).
This directive:
.IP
.nf
\f[C]
account\ other:zoo
\f[]
.fi
.PP
would influence the position of \f[C]zoo\f[] among \f[C]other\f[]'s
subaccounts, but not the position of \f[C]other\f[] among the top\-level
accounts.
.SS Rewriting accounts .SS Rewriting accounts
.PP .PP
You can define account alias rules which rewrite your account names, or You can define account alias rules which rewrite your account names, or

View File

@ -853,6 +853,7 @@ times though.
* Default commodity:: * Default commodity::
* Market prices:: * Market prices::
* Declaring accounts:: * Declaring accounts::
* Account display order::
* Rewriting accounts:: * Rewriting accounts::
* Default parent account:: * Default parent account::
@ -1002,7 +1003,7 @@ P 2010/1/1 € $1.40
another commodity using these prices. another commodity using these prices.
 
File: hledger_journal.info, Node: Declaring accounts, Next: Rewriting accounts, Prev: Market prices, Up: Directives File: hledger_journal.info, Node: Declaring accounts, Next: Account display order, Prev: Market prices, Up: Directives
1.14.7 Declaring accounts 1.14.7 Declaring accounts
------------------------- -------------------------
@ -1016,46 +1017,71 @@ account assets:bank:checking
hledger add, hledger-iadd, hledger-web, and ledger-mode. hledger add, hledger-iadd, hledger-web, and ledger-mode.
In future it will also help detect misspelled accounts. In future it will also help detect misspelled accounts.
Account names can be followed by a numeric account code:
account assets 1000
account assets:bank:checking 1110
account liabilities 2000
account revenues 4000
account expenses 6000
This affects how accounts are sorted in account and balance reports:
accounts with codes are listed before accounts without codes, and in
increasing code order (instead of listing all accounts alphabetically).
Warning, this feature is incomplete; account codes do not yet affect
sort order in
* the 'accounts' command
* the 'balance' command's single-column mode
* flat mode balance reports (to work around this, declare account
codes on the subaccounts as well).
* hledger-web's sidebar
Account codes should be all numeric digits, unique, and separated
from the account name by at least two spaces (since account names may
contain single spaces). By convention, often the first digit indicates
the type of account, as in this numbering scheme and the example above.
In future, we might use this to recognize account types.
An account directive can also have indented subdirectives following An account directive can also have indented subdirectives following
it, which are currently ignored. Here is the full syntax: it, which are currently ignored. Here is the full syntax:
; account ACCTNAME [OPTIONALCODE] ; account ACCTNAME
; [OPTIONALSUBDIRECTIVES] ; [OPTIONALSUBDIRECTIVES]
account assets:bank:checking 1110 account assets:bank:checking
a comment a comment
some-tag:12345 some-tag:12345
 
File: hledger_journal.info, Node: Rewriting accounts, Next: Default parent account, Prev: Declaring accounts, Up: Directives File: hledger_journal.info, Node: Account display order, Next: Rewriting accounts, Prev: Declaring accounts, Up: Directives
1.14.8 Rewriting accounts 1.14.8 Account display order
----------------------------
Account directives have another purpose: they set the order in which
accounts are displayed, in hledger reports, hledger-ui accounts screen,
hledger-web sidebar etc. For example, say you have these top-level
accounts:
$ accounts -1
assets
equity
expenses
liabilities
misc
other
revenues
By default, they are displayed in alphabetical order. But if you add
the following account directives to the journal:
account assets
account liabilities
account equity
account revenues
account expenses
the display order changes to:
$ accounts -1
assets
liabilities
equity
revenues
expenses
misc
other
Ie, declared accounts first, in the order they were declared,
followed by any undeclared accounts in alphabetic order.
Note that sorting is done at each level of the account tree (within
each group of sibling accounts under the same parent). This directive:
account other:zoo
would influence the position of 'zoo' among 'other''s subaccounts,
but not the position of 'other' among the top-level accounts.

File: hledger_journal.info, Node: Rewriting accounts, Next: Default parent account, Prev: Account display order, Up: Directives
1.14.9 Rewriting accounts
------------------------- -------------------------
You can define account alias rules which rewrite your account names, or You can define account alias rules which rewrite your account names, or
@ -1083,7 +1109,7 @@ hledger-web.
 
File: hledger_journal.info, Node: Basic aliases, Next: Regex aliases, Up: Rewriting accounts File: hledger_journal.info, Node: Basic aliases, Next: Regex aliases, Up: Rewriting accounts
1.14.8.1 Basic aliases 1.14.9.1 Basic aliases
...................... ......................
To set an account alias, use the 'alias' directive in your journal file. To set an account alias, use the 'alias' directive in your journal file.
@ -1106,7 +1132,7 @@ alias checking = assets:bank:wells fargo:checking
 
File: hledger_journal.info, Node: Regex aliases, Next: Multiple aliases, Prev: Basic aliases, Up: Rewriting accounts File: hledger_journal.info, Node: Regex aliases, Next: Multiple aliases, Prev: Basic aliases, Up: Rewriting accounts
1.14.8.2 Regex aliases 1.14.9.2 Regex aliases
...................... ......................
There is also a more powerful variant that uses a regular expression, There is also a more powerful variant that uses a regular expression,
@ -1131,7 +1157,7 @@ whitespace.
 
File: hledger_journal.info, Node: Multiple aliases, Next: end aliases, Prev: Regex aliases, Up: Rewriting accounts File: hledger_journal.info, Node: Multiple aliases, Next: end aliases, Prev: Regex aliases, Up: Rewriting accounts
1.14.8.3 Multiple aliases 1.14.9.3 Multiple aliases
......................... .........................
You can define as many aliases as you like using directives or You can define as many aliases as you like using directives or
@ -1147,7 +1173,7 @@ following order:
 
File: hledger_journal.info, Node: end aliases, Prev: Multiple aliases, Up: Rewriting accounts File: hledger_journal.info, Node: end aliases, Prev: Multiple aliases, Up: Rewriting accounts
1.14.8.4 'end aliases' 1.14.9.4 'end aliases'
...................... ......................
You can clear (forget) all currently defined aliases with the 'end You can clear (forget) all currently defined aliases with the 'end
@ -1158,8 +1184,8 @@ end aliases
 
File: hledger_journal.info, Node: Default parent account, Prev: Rewriting accounts, Up: Directives File: hledger_journal.info, Node: Default parent account, Prev: Rewriting accounts, Up: Directives
1.14.9 Default parent account 1.14.10 Default parent account
----------------------------- ------------------------------
You can specify a parent account which will be prepended to all accounts You can specify a parent account which will be prepended to all accounts
within a section of the journal. Use the 'apply account' and 'end apply within a section of the journal. Use the 'apply account' and 'end apply
@ -1417,41 +1443,43 @@ Node: Tags26403
Ref: #tags26521 Ref: #tags26521
Node: Directives27923 Node: Directives27923
Ref: #directives28066 Ref: #directives28066
Node: Comment blocks33922 Node: Comment blocks33948
Ref: #comment-blocks34067 Ref: #comment-blocks34093
Node: Including other files34243 Node: Including other files34269
Ref: #including-other-files34423 Ref: #including-other-files34449
Node: Default year34831 Node: Default year34857
Ref: #default-year35000 Ref: #default-year35026
Node: Declaring commodities35423 Node: Declaring commodities35449
Ref: #declaring-commodities35606 Ref: #declaring-commodities35632
Node: Default commodity36833 Node: Default commodity36859
Ref: #default-commodity37009 Ref: #default-commodity37035
Node: Market prices37645 Node: Market prices37671
Ref: #market-prices37810 Ref: #market-prices37836
Node: Declaring accounts38651 Node: Declaring accounts38677
Ref: #declaring-accounts38827 Ref: #declaring-accounts38856
Node: Rewriting accounts40498 Node: Account display order39406
Ref: #rewriting-accounts40683 Ref: #account-display-order39596
Node: Basic aliases41417 Node: Rewriting accounts40617
Ref: #basic-aliases41563 Ref: #rewriting-accounts40805
Node: Regex aliases42267 Node: Basic aliases41539
Ref: #regex-aliases42438 Ref: #basic-aliases41685
Node: Multiple aliases43156 Node: Regex aliases42389
Ref: #multiple-aliases43331 Ref: #regex-aliases42560
Node: end aliases43829 Node: Multiple aliases43278
Ref: #end-aliases43976 Ref: #multiple-aliases43453
Node: Default parent account44077 Node: end aliases43951
Ref: #default-parent-account44243 Ref: #end-aliases44098
Node: Periodic transactions45127 Node: Default parent account44199
Ref: #periodic-transactions45309 Ref: #default-parent-account44367
Node: Forecasting with periodic transactions46520 Node: Periodic transactions45251
Ref: #forecasting-with-periodic-transactions46763 Ref: #periodic-transactions45433
Node: Budgeting with periodic transactions48450 Node: Forecasting with periodic transactions46644
Ref: #budgeting-with-periodic-transactions48689 Ref: #forecasting-with-periodic-transactions46887
Node: Transaction Modifiers49148 Node: Budgeting with periodic transactions48574
Ref: #transaction-modifiers49311 Ref: #budgeting-with-periodic-transactions48813
Node: EDITOR SUPPORT50567 Node: Transaction Modifiers49272
Ref: #editor-support50685 Ref: #transaction-modifiers49435
Node: EDITOR SUPPORT50691
Ref: #editor-support50809
 
End Tag Table End Tag Table

View File

@ -819,45 +819,62 @@ FILE FORMAT
hledger add, hledger-iadd, hledger-web, and ledger-mode. hledger add, hledger-iadd, hledger-web, and ledger-mode.
In future it will also help detect misspelled accounts. In future it will also help detect misspelled accounts.
Account names can be followed by a numeric account code:
account assets 1000
account assets:bank:checking 1110
account liabilities 2000
account revenues 4000
account expenses 6000
This affects how accounts are sorted in account and balance reports:
accounts with codes are listed before accounts without codes, and in
increasing code order (instead of listing all accounts alphabetically).
Warning, this feature is incomplete; account codes do not yet affect
sort order in
o the accounts command
o the balance command's single-column mode
o flat mode balance reports (to work around this, declare account codes
on the subaccounts as well).
o hledger-web's sidebar
Account codes should be all numeric digits, unique, and separated from
the account name by at least two spaces (since account names may con-
tain single spaces). By convention, often the first digit indicates
the type of account, as in this numbering scheme and the example above.
In future, we might use this to recognize account types.
An account directive can also have indented subdirectives following it, An account directive can also have indented subdirectives following it,
which are currently ignored. Here is the full syntax: which are currently ignored. Here is the full syntax:
; account ACCTNAME [OPTIONALCODE] ; account ACCTNAME
; [OPTIONALSUBDIRECTIVES] ; [OPTIONALSUBDIRECTIVES]
account assets:bank:checking 1110 account assets:bank:checking
a comment a comment
some-tag:12345 some-tag:12345
Account display order
Account directives have another purpose: they set the order in which
accounts are displayed, in hledger reports, hledger-ui accounts screen,
hledger-web sidebar etc. For example, say you have these top-level
accounts:
$ accounts -1
assets
equity
expenses
liabilities
misc
other
revenues
By default, they are displayed in alphabetical order. But if you add
the following account directives to the journal:
account assets
account liabilities
account equity
account revenues
account expenses
the display order changes to:
$ accounts -1
assets
liabilities
equity
revenues
expenses
misc
other
Ie, declared accounts first, in the order they were declared, followed
by any undeclared accounts in alphabetic order.
Note that sorting is done at each level of the account tree (within
each group of sibling accounts under the same parent). This directive:
account other:zoo
would influence the position of zoo among other's subaccounts, but not
the position of other among the top-level accounts.
Rewriting accounts Rewriting accounts
You can define account alias rules which rewrite your account names, or You can define account alias rules which rewrite your account names, or
parts of them, before generating reports. This can be useful for: parts of them, before generating reports. This can be useful for:
@ -1134,4 +1151,4 @@ SEE ALSO
hledger 1.10.99 July 2018 hledger_journal(5) hledger 1.10.99 September 2018 hledger_journal(5)

View File

@ -1,5 +1,5 @@
.TH "hledger_timeclock" "5" "July 2018" "hledger 1.10.99" "hledger User Manuals" .TH "hledger_timeclock" "5" "September 2018" "hledger 1.10.99" "hledger User Manuals"

View File

@ -77,4 +77,4 @@ SEE ALSO
hledger 1.10.99 July 2018 hledger_timeclock(5) hledger 1.10.99 September 2018 hledger_timeclock(5)

View File

@ -1,5 +1,5 @@
.TH "hledger_timedot" "5" "July 2018" "hledger 1.10.99" "hledger User Manuals" .TH "hledger_timedot" "5" "September 2018" "hledger 1.10.99" "hledger User Manuals"

View File

@ -124,4 +124,4 @@ SEE ALSO
hledger 1.10.99 July 2018 hledger_timedot(5) hledger 1.10.99 September 2018 hledger_timedot(5)

View File

@ -1,5 +1,5 @@
.TH "hledger\-ui" "1" "July 2018" "hledger\-ui 1.10.99" "hledger User Manuals" .TH "hledger\-ui" "1" "September 2018" "hledger\-ui 1.10.99" "hledger User Manuals"

View File

@ -387,4 +387,4 @@ SEE ALSO
hledger-ui 1.10.99 July 2018 hledger-ui(1) hledger-ui 1.10.99 September 2018 hledger-ui(1)

View File

@ -1,5 +1,5 @@
.TH "hledger\-web" "1" "July 2018" "hledger\-web 1.10.99" "hledger User Manuals" .TH "hledger\-web" "1" "September 2018" "hledger\-web 1.10.99" "hledger User Manuals"

View File

@ -251,4 +251,4 @@ SEE ALSO
hledger-web 1.10.99 July 2018 hledger-web(1) hledger-web 1.10.99 September 2018 hledger-web(1)

View File

@ -1,6 +1,6 @@
.\"t .\"t
.TH "hledger" "1" "July 2018" "hledger 1.10.99" "hledger User Manuals" .TH "hledger" "1" "September 2018" "hledger 1.10.99" "hledger User Manuals"
@ -2246,6 +2246,11 @@ boundaries, or for closing out income/expenses for a period.
This was formerly called \[lq]equity\[rq], as in Ledger, and that alias This was formerly called \[lq]equity\[rq], as in Ledger, and that alias
is also accepted. is also accepted.
See close \[en]help for more. See close \[en]help for more.
.SS files
.PP
List all files included in the journal.
With a REGEX argument, only file names matching the regular expression
(case sensitive) are shown.
.SS help .SS help
.PP .PP
Show any of the hledger manuals. Show any of the hledger manuals.
@ -2769,6 +2774,11 @@ Helps ledger\-autosync detect already\-seen transactions when importing.
.SS rewrite .SS rewrite
.PP .PP
Print all transactions, adding custom postings to the matched ones. Print all transactions, adding custom postings to the matched ones.
.SS roi
.PP
Shows time\-weighted (TWR) and money\-weighted (IRR) rate of return on
your investments.
See \f[C]roi\ \-\-help\f[] for more.
.SS stats .SS stats
.PP .PP
Show some journal statistics. Show some journal statistics.

View File

@ -912,6 +912,7 @@ detailed command help.
* check-dates:: * check-dates::
* check-dupes:: * check-dupes::
* close:: * close::
* files::
* help:: * help::
* import:: * import::
* incomestatement:: * incomestatement::
@ -921,6 +922,7 @@ detailed command help.
* register:: * register::
* register-match:: * register-match::
* rewrite:: * rewrite::
* roi::
* stats:: * stats::
* tags:: * tags::
* test:: * test::
@ -1757,7 +1759,7 @@ Report account names having the same leaf but different prefixes. An
example: http://stefanorodighiero.net/software/hledger-dupes.html example: http://stefanorodighiero.net/software/hledger-dupes.html
 
File: hledger.info, Node: close, Next: help, Prev: check-dupes, Up: COMMANDS File: hledger.info, Node: close, Next: files, Prev: check-dupes, Up: COMMANDS
4.10 close 4.10 close
========== ==========
@ -1769,9 +1771,18 @@ a period. This was formerly called "equity", as in Ledger, and that
alias is also accepted. See close -help for more. alias is also accepted. See close -help for more.
 
File: hledger.info, Node: help, Next: import, Prev: close, Up: COMMANDS File: hledger.info, Node: files, Next: help, Prev: close, Up: COMMANDS
4.11 help 4.11 files
==========
List all files included in the journal. With a REGEX argument, only
file names matching the regular expression (case sensitive) are shown.

File: hledger.info, Node: help, Next: import, Prev: files, Up: COMMANDS
4.12 help
========= =========
Show any of the hledger manuals. Show any of the hledger manuals.
@ -1808,7 +1819,7 @@ DESCRIPTION
 
File: hledger.info, Node: import, Next: incomestatement, Prev: help, Up: COMMANDS File: hledger.info, Node: import, Next: incomestatement, Prev: help, Up: COMMANDS
4.12 import 4.13 import
=========== ===========
Read new transactions added to each FILE since last run, and add them to Read new transactions added to each FILE since last run, and add them to
@ -1834,7 +1845,7 @@ $ hledger import --dry ... | hledger -f- print unknown --ignore-assertions
 
File: hledger.info, Node: incomestatement, Next: prices, Prev: import, Up: COMMANDS File: hledger.info, Node: incomestatement, Next: prices, Prev: import, Up: COMMANDS
4.13 incomestatement 4.14 incomestatement
==================== ====================
This command displays a simple income statement, showing revenues and This command displays a simple income statement, showing revenues and
@ -1921,7 +1932,7 @@ selection.
 
File: hledger.info, Node: prices, Next: print, Prev: incomestatement, Up: COMMANDS File: hledger.info, Node: prices, Next: print, Prev: incomestatement, Up: COMMANDS
4.14 prices 4.15 prices
=========== ===========
Print market price directives from the journal. With -costs, also print Print market price directives from the journal. With -costs, also print
@ -1932,7 +1943,7 @@ Prices (and postings providing prices) can be filtered by a query.
 
File: hledger.info, Node: print, Next: print-unique, Prev: prices, Up: COMMANDS File: hledger.info, Node: print, Next: print-unique, Prev: prices, Up: COMMANDS
4.15 print 4.16 print
========== ==========
Show transactions from the journal. Aliases: p, txns. Show transactions from the journal. Aliases: p, txns.
@ -2049,7 +2060,7 @@ $ hledger print -Ocsv
 
File: hledger.info, Node: print-unique, Next: register, Prev: print, Up: COMMANDS File: hledger.info, Node: print-unique, Next: register, Prev: print, Up: COMMANDS
4.16 print-unique 4.17 print-unique
================= =================
Print transactions which do not reuse an already-seen description. Print transactions which do not reuse an already-seen description.
@ -2057,7 +2068,7 @@ Print transactions which do not reuse an already-seen description.
 
File: hledger.info, Node: register, Next: register-match, Prev: print-unique, Up: COMMANDS File: hledger.info, Node: register, Next: register-match, Prev: print-unique, Up: COMMANDS
4.17 register 4.18 register
============= =============
Show postings and their running total. Aliases: r, reg. Show postings and their running total. Aliases: r, reg.
@ -2162,7 +2173,7 @@ length and comparable to the others in the report.
 
File: hledger.info, Node: Custom register output, Up: register File: hledger.info, Node: Custom register output, Up: register
4.17.1 Custom register output 4.18.1 Custom register output
----------------------------- -----------------------------
register uses the full terminal width by default, except on windows. register uses the full terminal width by default, except on windows.
@ -2193,7 +2204,7 @@ selection.
 
File: hledger.info, Node: register-match, Next: rewrite, Prev: register, Up: COMMANDS File: hledger.info, Node: register-match, Next: rewrite, Prev: register, Up: COMMANDS
4.18 register-match 4.19 register-match
=================== ===================
Print the one posting whose transaction description is closest to DESC, Print the one posting whose transaction description is closest to DESC,
@ -2201,17 +2212,26 @@ in the style of the register command. Helps ledger-autosync detect
already-seen transactions when importing. already-seen transactions when importing.
 
File: hledger.info, Node: rewrite, Next: stats, Prev: register-match, Up: COMMANDS File: hledger.info, Node: rewrite, Next: roi, Prev: register-match, Up: COMMANDS
4.19 rewrite 4.20 rewrite
============ ============
Print all transactions, adding custom postings to the matched ones. Print all transactions, adding custom postings to the matched ones.
 
File: hledger.info, Node: stats, Next: tags, Prev: rewrite, Up: COMMANDS File: hledger.info, Node: roi, Next: stats, Prev: rewrite, Up: COMMANDS
4.20 stats 4.21 roi
========
Shows time-weighted (TWR) and money-weighted (IRR) rate of return on
your investments. See 'roi --help' for more.

File: hledger.info, Node: stats, Next: tags, Prev: roi, Up: COMMANDS
4.22 stats
========== ==========
Show some journal statistics. Show some journal statistics.
@ -2243,7 +2263,7 @@ selection.
 
File: hledger.info, Node: tags, Next: test, Prev: stats, Up: COMMANDS File: hledger.info, Node: tags, Next: test, Prev: stats, Up: COMMANDS
4.21 tags 4.23 tags
========= =========
List all the tag names used in the journal. With a TAGREGEX argument, List all the tag names used in the journal. With a TAGREGEX argument,
@ -2254,7 +2274,7 @@ query are considered.
 
File: hledger.info, Node: test, Prev: tags, Up: COMMANDS File: hledger.info, Node: test, Prev: tags, Up: COMMANDS
4.22 test 4.24 test
========= =========
Run built-in unit tests. Run built-in unit tests.
@ -2491,94 +2511,98 @@ Node: QUERIES26089
Ref: #queries26191 Ref: #queries26191
Node: COMMANDS30153 Node: COMMANDS30153
Ref: #commands30265 Ref: #commands30265
Node: accounts31247 Node: accounts31265
Ref: #accounts31345 Ref: #accounts31363
Node: activity32591 Node: activity32609
Ref: #activity32701 Ref: #activity32719
Node: add33061 Node: add33079
Ref: #add33160 Ref: #add33178
Node: balance35821 Node: balance35839
Ref: #balance35932 Ref: #balance35950
Node: Classic balance report39015 Node: Classic balance report39033
Ref: #classic-balance-report39188 Ref: #classic-balance-report39206
Node: Customising the classic balance report40557 Node: Customising the classic balance report40575
Ref: #customising-the-classic-balance-report40785 Ref: #customising-the-classic-balance-report40803
Node: Colour support42859 Node: Colour support42877
Ref: #colour-support43026 Ref: #colour-support43044
Node: Flat mode43199 Node: Flat mode43217
Ref: #flat-mode43347 Ref: #flat-mode43365
Node: Depth limited balance reports43760 Node: Depth limited balance reports43778
Ref: #depth-limited-balance-reports43960 Ref: #depth-limited-balance-reports43978
Node: Multicolumn balance report44416 Node: Multicolumn balance report44434
Ref: #multicolumn-balance-report44614 Ref: #multicolumn-balance-report44632
Node: Budget report49794 Node: Budget report49812
Ref: #budget-report49937 Ref: #budget-report49955
Ref: #output-format-152971 Ref: #output-format-152989
Node: balancesheet53049 Node: balancesheet53067
Ref: #balancesheet53185 Ref: #balancesheet53203
Node: balancesheetequity55496 Node: balancesheetequity55514
Ref: #balancesheetequity55645 Ref: #balancesheetequity55663
Node: cashflow56182 Node: cashflow56200
Ref: #cashflow56310 Ref: #cashflow56328
Node: check-dates58433 Node: check-dates58451
Ref: #check-dates58560 Ref: #check-dates58578
Node: check-dupes58677 Node: check-dupes58695
Ref: #check-dupes58801 Ref: #check-dupes58819
Node: close58938 Node: close58956
Ref: #close59045 Ref: #close59064
Node: help59375 Node: files59394
Ref: #help59475 Ref: #files59495
Node: import60549 Node: help59636
Ref: #import60663 Ref: #help59736
Node: incomestatement61393 Node: import60810
Ref: #incomestatement61527 Ref: #import60924
Node: prices63931 Node: incomestatement61654
Ref: #prices64046 Ref: #incomestatement61788
Node: print64318 Node: prices64192
Ref: #print64428 Ref: #prices64307
Node: print-unique69322 Node: print64579
Ref: #print-unique69448 Ref: #print64689
Node: register69516 Node: print-unique69583
Ref: #register69643 Ref: #print-unique69709
Node: Custom register output74144 Node: register69777
Ref: #custom-register-output74273 Ref: #register69904
Node: register-match75503 Node: Custom register output74405
Ref: #register-match75637 Ref: #custom-register-output74534
Node: rewrite75820 Node: register-match75764
Ref: #rewrite75937 Ref: #register-match75898
Node: stats76006 Node: rewrite76081
Ref: #stats76109 Ref: #rewrite76196
Node: tags76979 Node: roi76265
Ref: #tags77077 Ref: #roi76363
Node: test77313 Node: stats76479
Ref: #test77397 Ref: #stats76578
Node: ADD-ON COMMANDS78105 Node: tags77448
Ref: #add-on-commands78215 Ref: #tags77546
Node: Official add-ons79502 Node: test77782
Ref: #official-add-ons79642 Ref: #test77866
Node: api79729 Node: ADD-ON COMMANDS78574
Ref: #api79818 Ref: #add-on-commands78684
Node: ui79870 Node: Official add-ons79971
Ref: #ui79969 Ref: #official-add-ons80111
Node: web80027 Node: api80198
Ref: #web80116 Ref: #api80287
Node: Third party add-ons80162 Node: ui80339
Ref: #third-party-add-ons80337 Ref: #ui80438
Node: diff80472 Node: web80496
Ref: #diff80569 Ref: #web80585
Node: iadd80668 Node: Third party add-ons80631
Ref: #iadd80782 Ref: #third-party-add-ons80806
Node: interest80865 Node: diff80941
Ref: #interest80986 Ref: #diff81038
Node: irr81081 Node: iadd81137
Ref: #irr81179 Ref: #iadd81251
Node: Experimental add-ons81257 Node: interest81334
Ref: #experimental-add-ons81409 Ref: #interest81455
Node: autosync81689 Node: irr81550
Ref: #autosync81800 Ref: #irr81648
Node: chart82039 Node: Experimental add-ons81726
Ref: #chart82158 Ref: #experimental-add-ons81878
Node: check82229 Node: autosync82158
Ref: #check82331 Ref: #autosync82269
Node: chart82508
Ref: #chart82627
Node: check82698
Ref: #check82800
 
End Tag Table End Tag Table

View File

@ -1596,6 +1596,10 @@ COMMANDS
a period. This was formerly called "equity", as in Ledger, and that a period. This was formerly called "equity", as in Ledger, and that
alias is also accepted. See close -help for more. alias is also accepted. See close -help for more.
files
List all files included in the journal. With a REGEX argument, only
file names matching the regular expression (case sensitive) are shown.
help help
Show any of the hledger manuals. Show any of the hledger manuals.
@ -1978,6 +1982,10 @@ COMMANDS
rewrite rewrite
Print all transactions, adding custom postings to the matched ones. Print all transactions, adding custom postings to the matched ones.
roi
Shows time-weighted (TWR) and money-weighted (IRR) rate of return on
your investments. See roi --help for more.
stats stats
Show some journal statistics. Show some journal statistics.
@ -2222,4 +2230,4 @@ SEE ALSO
hledger 1.10.99 July 2018 hledger(1) hledger 1.10.99 September 2018 hledger(1)