Skip to content

Instantly share code, notes, and snippets.

@mahnve
Created February 12, 2015 14:19
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/927fa44a4b22f34d3bf0 to your computer and use it in GitHub Desktop.
Save mahnve/927fa44a4b22f34d3bf0 to your computer and use it in GitHub Desktop.
Find unused js libraries
for file in $(find . -iname "*.js" | sed 's/\.\///g' ); do grep -q $file ../*/*.html; if [ $? -ne 0 ]; then echo $file; fi; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment