Here’s a quick snippet of goodness to remove those annoying ‘._’ files that Macs generate on mounted drives…
cd [wherever you want to clean]
find . -name "._*" -exec rm '{}' \; -print
Here’s a quick snippet of goodness to remove those annoying ‘._’ files that Macs generate on mounted drives…
cd [wherever you want to clean]
find . -name "._*" -exec rm '{}' \; -print
Comments