Find Mac OS X System Images and Icons
Here’s a nifty little command line script to find all system images and icons and display them in an HTML file. View the file with Safari and you’ll be able to see icns icon files as well.
sudo find /System \( -name "*.png" -or -name "*.tiff" -or -name "*.jpg" -or -name "*.mov" -or -name "*.icns" \) | sed -e ’s/\(.*\)/<img src="file:\/\/\1"><\/img><br\/><p>\1<\/p><br\/><br\/>/’ > system_graphics.html
Thanks Ed







Comments(0)