Skip to content

Instantly share code, notes, and snippets.

@lfx
Created March 23, 2016 22:07
Show Gist options
  • Save lfx/f7d165ffc25e06711092 to your computer and use it in GitHub Desktop.
Save lfx/f7d165ffc25e06711092 to your computer and use it in GitHub Desktop.
find node_modules
find . -path "*/node_modules/*" -type d | awk -F'/node_modules/' '{print $NF}' | cut -f1 -d'/' | sort | uniq > mods.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment