Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Safely remove '._' files via an AppleScript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Safely remove '._' files via an AppleScript
Authored by: mike3k on Mar 08, '05 02:54:19PM

I use this on my Linux box (which I use as a NFS server):

find . -name "._*" -print -exec 'rm' '{}' ';'



[ Reply to This | # ]
Safely remove '._' files via an AppleScript
Authored by: tocoolcjs on Mar 08, '05 05:19:00PM

That is dangerous. Some files need their fork. (e.g. *.weblock)



[ Reply to This | # ]