Bash script - list recursively with find
find . -print0 | while IFS= read -r -d '' file do echo "$file" done