How:
How to list files recursively without directories
2022-07-02To list only files with find
use:
find . -not -type d
The above works for unix find
on FreeBSD.
It may work differently on GNU find.
With fd
:
fd -tf
To list only files with find
use:
find . -not -type d
The above works for unix find
on FreeBSD.
It may work differently on GNU find.
With fd
:
fd -tf