Last active
November 28, 2017 05:08
-
-
Save jeremyfromearth/d5fdb566ef42ddcb1884ba3955c6a458 to your computer and use it in GitHub Desktop.
Count the lines of code in a file or files
This file contains hidden or 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
#!/usr/bin/env bash | |
find . -name '*.js' | xargs wc -l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment