I have around 2,000 files that look like ".._.iTunes Preferences.plist.XXXXXX". I've tried to remove them with:
find . -name ".._*" -exec rm -f {} \;
But, the files are still there. How can I get rid of these files?
|
show 1 more comment
feedback
|
|
If they're all in the same directory, use
Your comment suggests that something's wrong with the file system. Try to repair it using Disk Utility. | ||||
feedback
|
-exec rm -f {} \;, just use-deleteto remove matching files. – Olli Mar 22 '11 at 7:25No such file or directoryerror as when you do arm. This error was one of the reasons I tried to do a different way of deleting these files. But, thank you for letting me know about the--deleteoption. – Charles Mar 22 '11 at 14:29