Replies: 2 comments 5 replies
-
The GNU find man page also mentions -ipath. Would that work on the BSDs? Besides that we could try to detect the find version and act accordingly. However the requirement is that the BSD find must support whole path matching in some way. If this is not possible, we cannot support them. In that case, I suggest that you install the GNU utils instead. |
Beta Was this translation helpful? Give feedback.
-
Correct me if I'm wrong, but:
i.e. adapt the pattern to include the upper-case versions? |
Beta Was this translation helpful? Give feedback.
-
consult/consult.el
Line 282 in 7533460
uses find(1) with
-iwholename
, which is not supported by the find(1) implementations on NetBSD and OpenBSD.OpenBSD has
-iname
; NetBSD has-iname
and-iregex
.Do you have an idea how to support them better?
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions