Skip to content

Instantly share code, notes, and snippets.

@vinicius-sabadim
Created October 16, 2018 21:38
Show Gist options
  • Select an option

  • Save vinicius-sabadim/cd246b23ee255acdf9174684c34ce946 to your computer and use it in GitHub Desktop.

Select an option

Save vinicius-sabadim/cd246b23ee255acdf9174684c34ce946 to your computer and use it in GitHub Desktop.
Find js files with most lines of code
find . -name "*.js" -type f | xargs wc -l | sort -rn | grep -v ' total$' | head -1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment