using the following I add the file name to the front of each line and send the output to a single file.
ls | while read file; do sed -e \"s/^/$file/g\" $fil
untested, try using xargs
find . -type f | xargs -I FILE sed "s/^/FILE/g" FILE > out