find . -type f -print0 | sort -z | \ while IFS= read -r -d '' f; do printf "==> %s <==\n" "$f" cat -- "$f" done