-
Notifications
You must be signed in to change notification settings - Fork 1.8k
SC2185
koalaman edited this page Sep 25, 2016
·
3 revisions
find -type f
find . -type f
When not provided a search path, GNU and Busybox find
will use a default path of .
, the current directory.
On POSIX, macOS/OSX, FreeBSD, OpenBSD and NetBSD, it will instead result in an error.
Explicitly specifying a path works across all implementations, and is therefore preferred.
None.