Recursively Count the Number of Lines in a File
find . -type f -name '*.' -exec wc -l {} \; | awk '{sum+=$1} END {print sum}'
Comments Off on Recursively Count the Number of Lines in a File
… and pieces
find . -type f -name '*.' -exec wc -l {} \; | awk '{sum+=$1} END {print sum}'
No comments yet.
RSS feed for comments on this post.
Sorry, the comment form is closed at this time.
Powered by WordPress