Skip to content

Instantly share code, notes, and snippets.

@mahnve
Created February 12, 2015 14:19
Show Gist options
  • Select an option

  • Save mahnve/927fa44a4b22f34d3bf0 to your computer and use it in GitHub Desktop.

Select an option

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