You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Relative days of the week (e.g. "last monday") are not parsed
GNU date seems to handle relative dates without issue.
Tested using coreutils v0.0.30
Example
# last monday
❯ date -d 'last monday'
Mon Mar 10 12:00:00 AM EDT 2025
❯ uutils-date -d 'last monday'
uutils-date: invalid date 'last monday'# next monday
❯ date -d 'next monday'
Mon Mar 17 12:00:00 AM EDT 2025
❯ uutils-date -d 'next monday'
uutils-date: invalid date 'next monday'