Forse stai cercando exec
opzione di find
.
find . -type f -exec wc -l {} \; | awk '{total += $1} END {print total}'
Probabilmente vuoi questo:
find . -type f -print0 | wc -l --files0-from=-
Se vuoi solo il numero totale di righe, puoi usare
find . -type f -exec cat {} + | wc -l