17 Jul 2013 In an effort to clean up some code, I wanted to find a list of files not imported by my app. I didn't see anything in a brief search, so I wrote this little script. Hopefully its helpful. It finds all javascript files in directories you specify as parameters to the script, greps your git repository for references to those files and echos those that should be removed. This script does have the possibility for false negatives (ie: things that aren't used that we don't mention) becau...