View Single Post
Posts: 566 | Thanked: 150 times | Joined on Dec 2007
#2
I'm not sure what kind of files they are but you can find them with:

find / -name '._*'

If you're sure you can delete them, this deletes all files starting with ._ in folder /home/user/ and subfolders:

find /home/user -name '._*' -type f -print0 | xargs -0 /bin/rm -f

Last edited by iamthewalrus; 2008-08-23 at 15:04.
 

The Following 2 Users Say Thank You to iamthewalrus For This Useful Post: