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: szedula on Mar 08, '05 04:02:46PM
this line:

do find /Volumes/whatever -name "*._.$ext" -exec rm -f {} \;

should be:

do find /Volumes/whatever -name "._*.$ext" -exec rm -f {} \;
 
shouldn't it?

[ Reply to This | # ]
Safely remove '._' files via an AppleScript
Authored by: pauljlucas on Mar 08, '05 04:44:13PM
Yes; sorry.

---
- Paul

[ Reply to This | # ]