Skip to content

Instantly share code, notes, and snippets.

@jozsefs
Last active August 29, 2015 14:25
Show Gist options
  • Save jozsefs/b80a81539ae99a9dc91b to your computer and use it in GitHub Desktop.
Save jozsefs/b80a81539ae99a9dc91b to your computer and use it in GitHub Desktop.
Get each js files line length in a folder (ignoring node_modules)
find ./ -type f -name "*.js" -not -path "*/node_modules/*" -print0 | xargs -0 wc -l | sort -n >> files.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment