Created
November 9, 2013 15:08
-
-
Save justinriggio/7386405 to your computer and use it in GitHub Desktop.
Count lines in files. Nice to check out how many lines of code you have.
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/sh | |
find . -name '*.js' | xargs wc -l |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can change js to whatever you want to check for. Like html, css, less whatever.