On Fri, Feb 24, 2023 at 6:55 AM Frank Heckenbach <f.heckenb...@fh-soft.de> wrote: ... > So "*/" ignores the symlink to a file as expected, but "l*/" does > return it, likewise "*/*/" which doesn't make much sense to me.
There is a known bug in glibc glob impl. $ ls makefile $ cat makefile all:; $(info $(wildcard hell*/)) $ touch hello $ ls hell*/ ls: cannot access 'hell*/': No such file or directory $ make hello make: 'all' is up to date. The current impl of glob handles trailing slashes correctly on certain filesystems and fails on others. See https://lists.gnu.org/archive/html/bug-gnulib/2019-11/msg00006.html regards, Dmitry