Skip to content

Instantly share code, notes, and snippets.

@mahnve
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mahnve/ec3e8d7494cd2c4a059c to your computer and use it in GitHub Desktop.
Save mahnve/ec3e8d7494cd2c4a059c to your computer and use it in GitHub Desktop.
Count number of copies of NPM libs
find . -iname node_modules | xargs -I{} find {} -maxdepth 1 -type d | xargs -I{} basename {} | grep -v 'node_modules\|.bin' | sort | uniq -c | sort -rn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment