-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Labels
Description
The coreutils version currently uses the parse_datetime crate to parse the date source which parses in YYYYMMDDHHMM and similar formats. However it is not compliant with date:
Usage: date [OPTION]... [+FORMAT]
or: date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]
Display date and time in the given FORMAT.
With -s, or with [MMDDhhmm[[CC]YY][.ss]], set the date and time.
GNU:
$ date 11111111
Mon 11 Nov 2024 11:11:00 AEDT
coreutils
$ cargo run --release -p uu_date -- 11111111
target/release/date: invalid date '11111111'
Since it is interpreting the first 1111 as the year.
Note: date -s STRING is compliant with GNU the version, only the positional argument format is affected.
Reactions are currently unavailable