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
Pingback: Mac Os: Eliminar los archivos ._ en las unidades montadas « El blog de Martini
Thank you very much, you’ve been most helpful!