-
-
Save ahaggart/cdac19ef38116285b2d27a5dc8b851de to your computer and use it in GitHub Desktop.
Get the line count of all files rooted at the current directory.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ ! "$#" = "1" ]; then | |
echo "usage: wcr file_extension" | |
exit; | |
fi | |
find . -name "*.$1" | xargs wc -l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment