Script to find and delete .DS_Store files in Mac OS X folders
For Linux
#!/bin/sh
#
# Script to find and delete .DS_Store files in Mac OS X folders
# The script will delete all .DS_Store files in the directory
# it's executed from and below
find . -name .DS_Store -exec rm {} \;
For Mac OS X/BSD
#!/bin/sh # # Script to find and delete .DS_Store files in Mac OS X folders # The script will delete all .DS_Store files in the directory # it's executed from and below find . -name .DS_Store -delete