-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Closed
uutils/parse_datetime
#246Labels
Description
Discovered while testing the motd scripts in Ubuntu questing under rust-coreutils. Under gnu-coreutils:
$ gnudate -d "now - 20 seconds" +%s
1757632916
$ gnudate -d "now - 20.1 seconds" +%s
1757632918Under rust-coreutils:
$ date -d "now - 20 seconds" +%s
1757632958
$ date -d "now - 20.1 seconds" +%s
date: invalid date 'now - 20.1 seconds'Reactions are currently unavailable