-
-
Save Ben-G/2775238 to your computer and use it in GitHub Desktop.
finds and prints unreferenced png files from xcode projects
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 | |
filename=`basename $png` | |
name=${filename%.*} | |
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