I want to cat all the files in a directory, but include some spacer between each one.
Try
find . -type f -exec cat {} \; -exec echo "-- spacer --" \;
Obviously, the 'spacer' can be more than the simple example used here.