Created
October 12, 2011 07:36
-
-
Save danielctull/1280542 to your computer and use it in GitHub Desktop.
A script to find images that are not used in an iOS project. Originally from http://stackoverflow.com/questions/6113243/how-to-find-unused-images-in-an-xcode-project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
PROJ=`find . -name '*.xib' -o -name '*.[mh]'` | |
for png in `find . -name '*.png'` | |
do | |
name=`basename $png` | |
if ! grep -q $name $PROJ; then | |
echo "$png is not referenced" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just a note - this will flag up a lot of false positives with the retina graphics as they aren't referenced directly in the code. Only consider deleting an @2x file if its corresponding non retina version is also flagged as being unused.
Also - names with spaces in them are not displayed properly in the output.