How To Strip All Finder Attributes for Some Device
Solution 1:
rm ._*
does the trick for FAT, which has attributes are stored in these ._
prefixed files, but doesn't work for NTFS, which embeds them into filesystem.
rm ._*
does the trick for FAT, which has attributes are stored in these ._
prefixed files, but doesn't work for NTFS, which embeds them into filesystem.