我正试图用DD-MM-YYYYY格式得出相当于1932-08-31年的日期,我增加了7个月,但似乎本月的编号为00。
Here is the command and its output:
$ date -d "1932-08-31+7 month" +%d-%M-%Y
31-00-1933
我尝试增加不同的月数、日数和年数,但无论我增加的月产出似乎总是为00。
I have tried the following commands:
$ date -d "19320831+8 days+1 month" +%d-%M-%Y
09-00-1932
$ date -d "19320831+8 days" +%d-%M-%Y
08-00-1932