find . -type f -print
prints out
./file1 ./file2 ./file3
Any way to make it print
file1 file2 fil
Another way of stripping the ./ is by using cut like:
./
cut
find -type f | cut -c3-
Further explanation can be found here