We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce:
date -d "1999-12-08" +%03d
What happens now: uutils date terminates with an error message:
date
date: invalid format %03d
What I expected to happen: GNU date prints the day number with a width of three padded by zeros:
008
Notes: this is causing a failure in GNU test file tests/date/date.pl. This is not specific to %d:
tests/date/date.pl
%d
$ date -d "1999-12-08" +%05y 00099 $ date -d "1999-12-08" +%05a 00Wed
The text was updated successfully, but these errors were encountered:
Seams that the format strings are processed by chrono so it might seam to have to be fixed there.
Sorry, something went wrong.
Opened an issue: #1663
No branches or pull requests
Steps to reproduce:
What happens now: uutils
date
terminates with an error message:What I expected to happen: GNU
date
prints the day number with a width of three padded by zeros:Notes: this is causing a failure in GNU test file
tests/date/date.pl
. This is not specific to%d
:The text was updated successfully, but these errors were encountered: