List used:

While find -d 2025-04-04 and find -n Alice work individually,


Using both of them at the same time causes the command to behave erratically rather than throw an error for invalid input.
find -d 2025-04-04 -n alice throws an invalid date error.

find -n Alice -d 2025-04-05 executes as per normal and returns no results.

Suggestion: Throw an error when an invalid input format is used.
List used:

While
find -d 2025-04-04andfind -n Alicework individually,Using both of them at the same time causes the command to behave erratically rather than throw an error for invalid input.
find -d 2025-04-04 -n alicethrows an invalid date error.find -n Alice -d 2025-04-05executes as per normal and returns no results.Suggestion: Throw an error when an invalid input format is used.