Delete .DS_Store script

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
 
shellscript/deletedsstore.txt · Senast uppdaterad: 2007-07-19 16:16 av frjo
 
Recent changes RSS feed Creative Commons License Driven by DokuWiki