I am recently checking GNU manual frequently. Here is one thing I am not able to figure out at all.
About date command: date %F
Doc states that
full date in ISO 8601 format; like ‘%+4Y-%m-%d’ except that any flags or field width override the ‘+’ and (after subtracting 6) the ‘4’.
What does this sentence mean? What are flags and field width? Why should we include the plus sign + in %+4Y-%m-%d? date +%4Y-%m-%d prints 2021-03-02 but date +%+4Y-%m-%d prints %+4Y-03-02
Please help and thanks in advance.