find . -type f -print
prints out
./file1 ./file2 ./file3
Any way to make it print
file1 file2 fil
Since -printf option is not available on OSX find here is one command that works on OSX find, just in case if someone doesn't want to install gnu find using brew etc:
-printf
find
gnu find
brew
find . -type f -execdir printf '%s\n' {} +