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 | |
# Find PNG images not referenced by any xib, m/h, and plist files | |
# Works from current directory downward. | |
refs=`find . -name '*.xib' -o -name '*.[mh]' -o -name '*.plist'` | |
for image in `find . -name '*.png'` | |
do | |
image_basename=`basename $image` |