Peut-être cherchez-vous exec
possibilité de find
.
find . -type f -exec wc -l {} \; | awk '{total += $1} END {print total}'
Vous voulez probablement ceci :
find . -type f -print0 | wc -l --files0-from=-
Si vous ne voulez que le nombre total de lignes, vous pouvez utiliser
find . -type f -exec cat {} + | wc -l