sfind doesn't follow symlinks with -L and without -dostat
A Tool Box with tools written or managed by Jörg Schilling
Brought to you by:
schily
For example:
$ mkdir -p foo/bar/baz
$ ln -s bar foo/link
$ ./sfind/OBJ/x86_64-linux-gcc/sfind -L foo
foo
foo/bar
foo/bar/baz
foo/link
$ ./sfind/OBJ/x86_64-linux-gcc/sfind -L foo -dostat
foo
foo/bar
foo/bar/baz
foo/link
foo/link/baz
I observe this on Linux on both btrfs and tmpfs. I suspect it's trusting d_type.
Fixed in schily-2019-09-22