mirror of
https://github.com/simonmichael/hledger.git
synced 2024-12-29 13:22:27 +03:00
28 lines
423 B
Plaintext
28 lines
423 B
Plaintext
# print shows both dates. The second's year defaults to the first's.
|
|
hledgerdev -f - print --effective
|
|
<<<
|
|
2009/1/1=1/2 x
|
|
a 1
|
|
b
|
|
>>>
|
|
2009/01/01=2009/01/02 x
|
|
a 1
|
|
b -1
|
|
|
|
>>>2
|
|
>>>= 0
|
|
|
|
# Effective date of 29 Feb on leap year should be valid
|
|
hledgerdev -f - print --effective
|
|
<<<
|
|
2001/2/27=2000/2/29 x
|
|
a 1
|
|
b
|
|
>>>
|
|
2001/02/27=2000/02/29 x
|
|
a 1
|
|
b -1
|
|
|
|
>>>2
|
|
>>>= 0
|